PureBytes Links
Trading Reference Links
|
Hello everybody
please elaborate in simple english what is this formula?
i read help file but cant understand it
says removes excessive signals:
returns 1 on the first occurence of "true" signal in Array1
then returns 0 until Array2 is true even if there are "true" signals in
Array1
in this formula i see this
Buy = H > Ref(HHV(H,200),-1);
BuyPrice = Ref(HHV(H,200),-1);
Sell = L < Ref(LLV(L,100),-1);
SellPrice = Ref(LLV(L,100),-1);
Buy = ExRem(Buy,Sell);
Sell = ExRem(Sell,Buy);
Short = L < Ref(LLV(L,200),-1);
ShortPrice = Ref(LLV(L,200),-1);
Cover = H > Ref(HHV(H,100),-1);
CoverPrice = Ref(HHV(H,100),-1);
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-digest@xxxxxxxxxxxxxxx
amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|