Want to clone the code from this video and play around with it yourself? Then I recommend coding along since that is the best way to learn. If you don't want to code along, you can clone the algorithm here: www.quantconnect.com/forum/discussion/11567/algorithmic-trading-video-series-9-twitter-trading-bot/p1?ref=towm
@olinay3813 жыл бұрын
Love the video as always :)
@GuyFawkes9113 жыл бұрын
Love the video as always great work.
@TradeOptionsWithMe3 жыл бұрын
Thank you!
@andersvestlimo8524 Жыл бұрын
Are you sure the datetime column in the tweets dataset is right? TSLA are traded in EST at nasdaq and the Tweets have UTC? You would be trading at the wrong times?
@XPTO5763 жыл бұрын
How do you connect several strategies/setups in the same asset? Ninja Trader can't do that, is there another platform that can for USA Futures?
@KyleSpragg Жыл бұрын
How do you know exactly what time to add onto the Reader function to prevent lookahead bias, more specifically, how do I figure out what the particular "end time" would be?
@Returnnow3 жыл бұрын
Hey I am new to your Chanel. I created a trading bot but want to create more into it. Hopefully when I finish watching your videos I’ll get some ideas.
@TradeOptionsWithMe3 жыл бұрын
I hope so too!
@larrygranda64472 жыл бұрын
There’s also pluto hq? They support futures automated trading in addition. Not difficult for non coders. And simulated stock trading challenges.
@8ym3TV3 жыл бұрын
would anyone be interested in forming an accountability group? The group's objective would be to meet once a week and review what we've learned while also motivating each other. I'll make the discord server. Also OP thanks a lot for this video series, no one gives out this kind of information for free. Bless your soul
@hamad.learns3 жыл бұрын
I am
@hamad.learns3 жыл бұрын
What’s app maybe easier ?
@8ym3TV3 жыл бұрын
@@hamad.learns i dont have whats app. but id be willing to make one
@mitchello2883 жыл бұрын
Hey I know im a month late but I would be interested, Discord is great
@8ym3TV3 жыл бұрын
@@mitchello288 whats ur discord?
@nanjil13 жыл бұрын
hello i have a coding question in your code you have the line content = data[self.musk].Tweet where is 'Tweet' defined. The class MuskTweet returns lower case 'tweet'?
@TradeOptionsWithMe3 жыл бұрын
Thanks for the question. It is defined in the Reader method: tweet[“Tweet”] = str(content)
@benmotocross95723 жыл бұрын
It seems we could enter a position before market close (in the last 15 minutes of trading). So even though we've liquidated, we still have 15 minutes where we could enter new positions, and thus hold overnight. Am I missing something? Thanks for the awesome and inspiring content!
@TradeOptionsWithMe3 жыл бұрын
Great observation! That seems to be something I overlooked, but should be an easy fix.
@mauriciocervantes16703 жыл бұрын
Thank you for the series!
@tanque7282 жыл бұрын
What does the word “self” stands for?, because i see you use it in all the videos. Thanks!
@TradeOptionsWithMe2 жыл бұрын
It refers to the instance of the algorithm class that provides all the helper methods. I'd recommend looking into some object-oriented Python programming to get a better grasp.
@日日哥RRG Жыл бұрын
Great vedio, it helps me alot
@patrickkikaha95003 жыл бұрын
Thank you for the videos, great start into the subject. I am not very experienced and I am currently stuck on an algo that tried to identify gappers in a universe with fundamentals. Is there anyway we could get a video in the future that tackels this or a similar issue?
@thewheeldeal84392 жыл бұрын
Can you please make a vid about accessing Tiingo? I'm trying to download Tiingo news into QC research notebook to test a Keras ML algo, but I can't seem to load a news history. I have a Tiingo API and set it, but I get no news
@bruv-lz4fh Жыл бұрын
Everytime i defined "tweet" as a variable i defined it as lowercase but still when i got to OnData it refused to acccept all lower case ".tweet" Im new "ish" to programming ( I can write your calculators and hello worlds but no more than that) so im wondering. Why is this the case? Just to be clear. The code runs as intended. Without errors just wondering why the above is the case
@janghyukboo61133 жыл бұрын
Amazing contents. Thanks!
@Mikot22 жыл бұрын
Hi, I have tried to code along. I get the error code "SentimentIntensityAnalyzer" is not defined. I have controller spelling and compared to your code. What am I missing?