PureBytes Links
Trading Reference Links
|
If you like to play and apply indicators that require OHLC prices to the
Equity curve you can perform a single stock Scan to create an Equity curve
with OHLC prices. After you create it you just display it as if it were a
regular stock and select the Candle stick display.
//your trading rules here ...
//This formula assumes you trade at the Open.
E1=Equity();
AddToComposite(E1,"_EquityALTR","O",7);
AddToComposite(E1*H/O,"_EquityALTR","H",7);
AddToComposite(E1*L/O,"_EquityALTR","L",7);
AddToComposite(E1*C/O,"_EquityALTR","C",7);
Have fun,
Herman.
|