PureBytes Links
Trading Reference Links
|
hmm. i did it the hard/clumsy way for now.
BuySignal = BuySignal AND (
( (Ref(L,1)<=C-0.50) AND Ref(SellSignal,1)==0 )
OR ( (Ref(L,2)<=C-0.50) AND ( Ref(SellSignal,1)==0 AND Ref(SellSignal,2)==0) )
OR ( (Ref(L,3)<=C-0.50) AND ( Ref(SellSignal,1)==0 AND Ref(SellSignal,2)==0) AND Ref(SellSignal,3)==0 )
);
BuyPrice =C-0.25;
--- In amibroker@xxxxxxxxxxxxxxx, "Chaitanya" <kcityg@xxx> wrote:
>
> Hello all,
>
> Is there an easy way to test if i want to wait for a slightly better price (say 1%) than the standard buy signal (bake it into the buy signal) but ofcourse entry valid only until i get the standard sell signal.
>
> Example: Say i got a long entry into X at 25.00 using a system and exit at say 27.00. And say it took 15days for the trade. To test what i want, i need to go through all bars between my entry and exit and see if the high of any of them went above 25.25. How do i do this easily?
>
> Thanks
> -gariki
>
------------------------------------
**** 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:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto: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/
|