Hi ALL.
I´m new with AMIBROKER, I bought the software only few days ago, and it´s
amazing what we can do. :)
I´m trying to understand a optimization, and here is the best place to ask.
Running the script below ( optimize button )
--
Range1=Optimize("range1",3,3,100,1);
Range2=Optimize("range2",6,6,100,1);
Buy = Cross((Close),(EMA(Close,range1)));
Buystop = Ref(EMA(Close,range1),-1);
BuyPrice = Max(Buystop,Low);
Sell = Cross(EMA(Close,range2),(Close));
Sellstop = Ref(EMA(Close,range1),-1);
SellPrice = Min(sellstop,High);
Short = Sell;
Cover = Buy;
--
How can I know what is the values for both EMA´s ?
If I run a BT, and double click on some result for BT, will show the arrows,
but how can I know what is the EMA´s value ?
Thanks in advance,
Ricardo.