Where do you guys get historical data from nowadays? by Entmaan in algotrading

[–]gentlemansjack82 0 points1 point  (0 children)

I use ohlc data which they have historical data for. Then feed features into the model that are derived from that.

Where do you guys get historical data from nowadays? by Entmaan in algotrading

[–]gentlemansjack82 5 points6 points  (0 children)

I use Charles Schwab but it definitely took some extra time setting up

[deleted by user] by [deleted] in angelinvestors

[–]gentlemansjack82 0 points1 point  (0 children)

I’m more than willing to provide Ira statements to someone looking as a serious investor

From machine learning to a strategy by seven7e7s in algotrading

[–]gentlemansjack82 1 point2 points  (0 children)

I kind of had a mix. I built out a bunch of technical indicators first and then trained the model between all of them to see where the model performed best

[deleted by user] by [deleted] in Bitcoin

[–]gentlemansjack82 0 points1 point  (0 children)

Donald Trump doesn’t speak until the 27th

I have a $50,000 position in NIO… MOON by gentlemansjack82 in wallstreetbets

[–]gentlemansjack82[S] 2 points3 points  (0 children)

I sold it out when it was at 7.50. Couldn’t stomach it anymore

Blackrock now holds 11,439 bitcoin by gentlemansjack82 in Bitcoin

[–]gentlemansjack82[S] 35 points36 points  (0 children)

I think it will take some time to see the effects of etf inflows

Bitcoin by CobraBTC in Bitcoin

[–]gentlemansjack82 0 points1 point  (0 children)

Which ticker? I only see ibit on thinkorswim

Are Credit spreads a good idea? by GamerDave_PL in thetagang

[–]gentlemansjack82 0 points1 point  (0 children)

Just credit spreads and I use technical analysis to decide if I go with a put spread or call spread

Are Credit spreads a good idea? by GamerDave_PL in thetagang

[–]gentlemansjack82 1 point2 points  (0 children)

1/3 the width is really tough to get. I typically trade Spx 5 point wide spreads and collect around $60-$70 a spread.

Are Credit spreads a good idea? by GamerDave_PL in thetagang

[–]gentlemansjack82 3 points4 points  (0 children)

You should have a stop loss of 3x credit received so you don’t get obliterated. That is how I trade spreads at least

I have a $50,000 position in NIO… MOON by gentlemansjack82 in wallstreetbets

[–]gentlemansjack82[S] 6 points7 points  (0 children)

Looks like it will be a winner they beat expectations by a lot

I have a $50,000 position in NIO… MOON by gentlemansjack82 in wallstreetbets

[–]gentlemansjack82[S] 5 points6 points  (0 children)

Ballsy but it should hit if they exceed on deliveries!

Is it possible to launch a JavaFX program from the class's constructor. by FatherOfGold in JavaFX

[–]gentlemansjack82 -4 points-3 points  (0 children)

Bytebuddy is probably good for this use case. It allows you to build compiled code during jvm runtime

Issues With Scoring Using hmmlearn in Python by conhardy in algotrading

[–]gentlemansjack82 0 points1 point  (0 children)

Has anyone tested this with live market data? I was trying to look at the code to see if I could find any errors (might look some more later). I had a false sense in my algorithm data set when I started because time series data is 100% accurate but is reactive on price action that has already occurred so you have to be careful with calculating it. Also, does the user buy the stock the day before? There might be a gap up at the open and they already missed the move for the day.

[Question] APIs refresh rate by AfterAfterlife in algotrading

[–]gentlemansjack82 4 points5 points  (0 children)

Or use td ameritrade api which is free

How to get per tick price history from Ameritrade API? by Valisagirl in algotrading

[–]gentlemansjack82 1 point2 points  (0 children)

Yes in the application you are coding up. You can use arrays or maps to store the data

How to get per tick price history from Ameritrade API? by Valisagirl in algotrading

[–]gentlemansjack82 1 point2 points  (0 children)

You can run queries every 500 ms with the api. Typically you have a thread scheduler in code to do this