PureBytes Links
Trading Reference Links
|
Martin,
You can use "CROSS" function if you want to receive the buy signal the day
of the cross :
Volume>100000 and
C>2 and
C<6 and
CROSS(C,Mov(C,200,s)) and
BigWhite()
Or to receive the signal to buy within 3days and less than 10 :
Signal:= Volume>100000 and C>2 and C<6 and C>Mov(C,200,s) and
BigWhite();
Barssince(Signal) > 2 and Barssince(Signal) < 10
Pierre Tremblay
Martin Blain a écrit:
Pierre
This is my actual buy criteria.
Volume>100000 and
C>2 and
C<6 and
C>Mov(C,200,s) and
BigWhite()
I couldn't get the code to stick. It would except the word "signal"
Right now the problem is the buy signal come at the first white candle and
that could be months after the cross. The model still looks good but the
results are deceiving.
Martin Blain
Burlington Ontario
----- Original Message -----
From: "Pierre Tremblay"
To:
Sent: Monday, April 05, 2004 10:37 PM
Subject: Re: [Metastockusers] range
Marty,
For example, Signal = Close cross over 200 EMA :
Enter LONG :
Signal:= Cross(C,Mov(C,200,e));
Barssince(Signal) > 2 and Barssince(Signal) < 10
Pierre Tremblay
Marty a écrit:
When coding a buy signal I need to structure the signal to buy
within say 3days and less than 10 or the system tester will keep
repeating the signals. Does anybody know how to code this. I was
thinking barsince but that doent seem to do it.
Martin
Yahoo! Groups Links
Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/zMEolB/TM
---------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/Metastockusers/
To unsubscribe from this group, send an email to:Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|