[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: RE: [amibroker] Crazy backtest results



PureBytes Links

Trading Reference Links


//Minimum=LastValue(Lowest(Volume));
//Maximum=LastValue(Highest(Volume));

//Plot(Close,"price",colorBlue,styleCandle);
//Plot(Volume,"volume",colorGreen,styleHistogram|styleThick|styleOwnScale,Minimum,Maximum);
//Plot(MA(Volume,15),"MA volume",colorRed,styleLine|styleOwnScale,Minimum,Maximum);

Buy =Cross(Close,MA(Close,21));
Sell=Cross(MA(Close,21),Close);
Cover =Cross(Close,MA(Close,21));
Short=Cross(MA(Close,21),Close);

//Short=Sell;
//Cover=Buy;