I am wanting to change my trade size on some trades and am using a bool set to false. Hasve searched the forum but still unsure why it wont change as shown.
Tradesize =20000 for the entry.
thanks Raef

// Condition set 1
if (SecondEntry == true)
{
Tradesize = 20000; // problem here
}
if (CrossAbove(EMA(Fema), EMA(Sema), 1))
{
EnterLong(Tradesize, "");
}



Comment