PureBytes Links
Trading Reference Links
|
You need to fix your limit entries first - neither one of them will ever
be filled on the trading day. Forward referencing your entry signals
(i.e. plotting into the future) does not help either.
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, "pet_park12" <pet_park12@xxx>
wrote:
>
> Hi All
>
>
> I got a problem in defining this condition into trade sim. I wish to
> say that I my first limit entry does not get hit and my trigger still
> triggering me I would like to take a trade at the new level of limit
> sell. How can i make this correct?
>
> {=== SHORT TRADES ===}
>
> MinEnt1 := Floor((H + 1 * ATR(10)) * 100) / 100;
>
> MinEnt2 := Floor((H + 0.5 * ATR(10)) * 100) / 100;
>
>
>
> Trigger := Cross((Mov((RSI(8)-LLV(RSI(8),8)) / (HHV(RSI(8),8)- (LLV
> (RSI
> (8),8))),3,E)*100),83);
>
> ShortEntryTrigger1:= Ref(Trigger,-1) AND Ref(H,1) >= MinEnt1;
>
> ShortEntryTrigger2:= Ref(Trigger,-2) AND Ref(H,2) >= MinEnt2
>
>
> EntryTrigger := ShortEntryTrigger1 OR ShortEntryTrigger2
>
> ShortEntryPrice := If(OPEN > Ref(MinEnt,-1),OPEN,Ref(MinEnt,-1))OR If
> (OPEN > Ref(MinEnt,-2),OPEN,Ref(MinEnt,-2));
>
>
> Does anyone know how to solve this problem? does anyone has a better
> idea so that the coding will be more concise and accurate
>
>
> Thanks
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|