PureBytes Links
Trading Reference Links
|
David,
No - everything works - study(s) is just an array(s) like close or open etc.
eg
buy = close > study("RE");
sell = close < study("UP");
You could use tolerances for example
buy = close > 1.015 * study("RE");
close must be 1.5% above the line of resistance study("RE") for a buy.
Geoff
Original Message:
-----------------
From: David Holzgrefe dtholz@xxxx
Date: Tue, 17 Apr 2001 20:09:47 +1000
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] studies
Hi TJ and others,
is this the only search that works with study (cross)
buy= cross(close, study("up")) ;
was trying to look for stock trading above there trend line
buy= close>(close, study("up")) ;
Thanks David
--------------------------------------------------------------------
Mail2Web - Check your email from the web at
http://www.mail2web.com/ .
|