PureBytes Links
Trading Reference Links
|
I am not sure I understand this. The following system has only one
trade on 4 years of data and with every stock I tried. Something is
wrong and I can not figure out why. Any idea?
=========
BuyStop= ref(HHV(C, 20), -1);
SellStop= ref(LLV(C, 20), -1);
BuyPrice = max( BuyStop, Low );
SellPrice = min( SellStop, High );
Buy = Cross( High, BuyStop );
Sell = Cross( SellPrice, sellstop);
|