Ok, I am getting the correct stop being displayed in Zorro and it seems to be working but..
Is there any reason why the stop displayed FXCM is not matched to the same a Zorro as I find using the chart display in FXCM can be useful whilst Zorro is running.. This is what I would like to put into code if possible..
Is it just the case of just adding a trade function like you say and then the stop with be correctly displayed in FXCM?
So the code will go something like...? (sorry if it's already incorrect)
function run()
{
BarPeriod = 1;
asset("EUR/USD");
LookBack = 300;
vars Close = series(priceClose());
Stop = LL(60) - 1*PIP;
printf("\nStop = %.5f",Stop);
if (WillR(3) < 50.5 && RSI(Close,2) < 60)
enterLong();
if (RSI(Close,4) > 80)
exitLong();
}
Thanks, i am still learning via trial and error, I am already a Zorro believer though

Edit.. I have tried again with the TradeStopLimit but the stop in FXCM is still not displayed.. Back to the manual it is, but a gentle push would no be forgotten.
