Hi, a silly question:
If I run this script
Code:
for (open_trades){
printf("\nTradeAsset, long, short %s  %d, %d",TradeAsset,TradeIsLong,TradeIsShort); 
// is working, but
printf("\nTradeStopLimit: %f",TradeStopLimit); 
// is alway 0.000000 
// even when I write before 
TradeStopLimit=MyLimit; // MyLimit > 0
}


The remarked resuls occur. What's my error?
Thanks to all..