Hey guys! Super excited to announce my new course ‘Crypto Trading with QuantConnect' is officially launched on Udemy! Been working the past several months to get this out to you guys. Linked below is my tweet about the course. The first 30 people that retweet will receive a coupon code for the course for free! #quantconnect #crypto
https://twitter.com/EricSumm/status/994699654372708352
This course is great for beginners. I'll show you how to write your own programs that algorithmically trade crypto live on GDAX! Check out the Lecture Titles below
Buy and Hold
Simple Target and Stop
Simple Trailing Stop
EMA Cross with QC Indicators
Build a Custom Candle From Scratch
Apply CurrentLow PreviousLow Strategy
Momersion
Macd Change
Multiple Symbols
Connecting to GDAX and Going LIVE!
Derek Hallman
Cool Eric!
Joshua Montgomery
Eric,
I'm really enjoying the course and have learned a lot, so thank you for all the time you've taken to put this together and explain the QuantConnect system!
Is there any way you can post the code here so I can take a look at the final product and see what I've done wrong? I'm on Lecture 10 (Multiple Symbols), and there is a part where your video is in the way of the code. This happens to be where I'm having problems and I can't seem to figure it out. The "X"'s on the right show where the errors are.
public class SymbolData
{
public Symbol Symbol;
public string BaseSymbol;
public MovingAverageConvergenceDivergence Macd;
public SymbolData(Symbol symbol, string BaseSymbol);
X {
X Symbol = symbol;
baseSymbol = baseSymbol;
}
}
}
}
Eric Summers
Here is the code for the SymbolData class...
/// Contains data pertaining to a symbol in our algorithm
public class SymbolData
{
/// This symbol the other data in this class is associated with
public Symbol Symbol;
public string BaseSymbol;
/// The simple moving average indicator for our symbol
public MovingAverageConvergenceDivergence Macd;
/// Initializes a new instance of SymbolData
public SymbolData(Symbol symbol, string baseSymbol)
{
Symbol = symbol;
BaseSymbol = baseSymbol;
}
}
Hope this helps! Happy coding
Joshua Montgomery
Eric,
Thanks for the info! I found my issues and the algo works.
Do you have plans to create any additional courses on QuantConnect? I'm having difficulty with the frameworks, and I think there is a lot of potential there.
Eric Summers
Glad I could help! Right now I'm gearing up to launch a YouTube channel
Crypto Catalyst where I'll be regularly posting short videos about using
QC. And also a Python version of the course you just took. Thanks for the
interest!
I'm still figuring out frameworks myself.
Happy coding,
Tamanash CHOWDHARY
Hi Eric,
I started with your Udemy course. Looking forward to your Youtube channel. Thanks for helping the community :-)
Joshua Montgomery
Eric Summers
Be sure to post a link to your Youtube channel so we can subscribe. Your tutorials have been the most helpful I've seen so far.
I am waiting to trade Crypto, but in the meantime, I've been trying to adapt your tutorials to Forex. You gave me a lot more confidence to work with QC just as I was ready to throw in the towel.
Thank you again for all of your work.
Eric Summers
moment
Emilio Freire
Hi Eric,
Did you start your YouTube channel with Python examples on Crypto trading using QC?
Thanks!
Emilio
Eric Summers
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
To unlock posting to the community forums please complete at least 30% of Boot Camp.
You can continue your Boot Camp training progress from the terminal. We hope to see you in the community soon!