Developing "Spartan"

I've started storing IB scanner results:


For example:

upload_2019-12-17_14-34-8.png
 
Just keeping this here as a note for myself, eventually will start storing it and see relations to daily returns:

Code:
curl -q -o - https://api.stocktwits.com/api/2/streams/trending.json 2> /dev/null | jq '.messages | .[] | .symbols | .[] | .symbol' | sort | uniq -c | sort -nr

Implemented tracking this stuff, just started letting it run. Will be interesting to keep track.

upload_2019-12-18_2-18-30.png
 
Last edited:
I remember watching a YouTube video a long time ago in which somebody made code to analyze Twitter feeds about sentiment related to certain stock tickers. He used that to place trades. I don’t remember whether the outcome was profitable.
 
I remember watching a YouTube video a long time ago in which somebody made code to analyze Twitter feeds about sentiment related to certain stock tickers. He used that to place trades. I don’t remember whether the outcome was profitable.

I doubt that it's profitable just like that. This is more just to see how things shape up during the day and whether I can use the information in some way. Probably not, so it's just a fun exercise I do when the market is not moving.
 
Just curious....before taking on this mammoth task of creating your own trading platform, did you first get a chance to review Ninja Trader ? I am not a subscriber, but I've witnessed some really impressive charting and indicators using it.
 
Just curious....before taking on this mammoth task of creating your own trading platform, did you first get a chance to review Ninja Trader ? I am not a subscriber, but I've witnessed some really impressive charting and indicators using it.

Yes and every few months someone posts about a limitation in NT that justifies my decision.
 
Just curious....before taking on this mammoth task of creating your own trading platform, did you first get a chance to review Ninja Trader ? I am not a subscriber, but I've witnessed some really impressive charting and indicators using it.

PS: not a mammoth task.

upload_2019-12-18_9-37-59.png
 
Back
Top