In the Buy and Hold -> Accessing Quote Prices excercise even if I cut and past the solution the exericise fails. Any ideas?
class BootCampTask(QCAlgorithm):
def Initialize(self):
self.SetCash(100000)
self.SetStartDate(2017, 5, 1)
self.SetEndDate(2017, 5, 31)
# add forex data
self.AddForex("EURUSD", Resolution.Hour, Market.Oanda)
# set brokerage model
self.SetBrokerageModel(BrokerageName.OandaBrokerage)
def OnData(self, data):
if self.Time.day == 1 and self.Time.hour == 10:
self.Debug(str(data["EURUSD"].Ask.Close))
I have tried repeatedly and always fails....
Link Liang
Hi Jósef,
Thanks for reporting this bug. We have already fixed it. You could try to submit it one more time and you should pass this exercise. If you have any further issues, please let us know by following up this post, and we will be glad to assist. Thanks for your support!
Agasthya Paidipalli
I am having the same issue. the exercise keeps failing on me.
Sean Miller
I think this is failing on submit with C# also:
namespace QuantConnect { public partial class BootCampTask : QCAlgorithm { public override void Initialize() { SetStartDate(2017, 5, 1); SetEndDate(2017, 5, 31); SetCash(100000); AddForex("EURUSD", Resolution.Hour, Market.Oanda); SetBrokerageModel(BrokerageName.OandaBrokerage); } public override void OnData(Slice data) { if (data.Time.Day == 1 && data.Time.Hour == 10) { Debug(data["EURUSD"].Ask.Close.ToString()); } } } }
Link Liang
Hi Agasthya and Sean,
Sorry for the inconvenience. We had found an issue with Oanda data and we've fixed it for both C# and Python. Please check back if you are able to submit this bootcamp exercise. Thanks for your support!
Jósef Dan Karlsson
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!