My "Primary Bars" object is a "SPY" 5-minute. Below I have the following code in my strategy:
if (State == State.Configure)
{
OnBarUpdate()
{
{
EnterLong();
if (BarsInProgress == 1)
{
EnterLong();
I'm referencing the "Multi-Time Frame & Instruments" tutorial but for some reason, the strategy enters into the "SPY" position and never enters into the "AMD".
Thanks

Comment