PureBytes Links
Trading Reference Links
|
Steven --
Yep. For example to place sell stop 0.1 below yesterdays EMA(C,40):
SetTradeDelays(1,0,1,0); // in on tomorrow's open
BuyPrice = Open;
ShortPrice = Open;
Rfe = 0.1; // room for error, could use ATR for example
Slippage = 0.05; // or what ever you want
SellPrice = IIf(Open<Ref(EMA(C,40),-1,-Rfe),Open,
Ref(EMA(C,40),-1)-(Rfe+Slippage));
Sell = IIf(L<Ref(EMA(C,40),-1)-Rfe,True,False);
// Note: SellPrice is meaningless unless Sell is True
Short=Cover=0; // I don't short (usually)
-- Keith
ezbentley wrote:
Is there any way to implement stops manually without using ApplyStop?
Steven
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
SPONSORED LINKS
YAHOO! GROUPS LINKS
|
|