PureBytes Links
Trading Reference Links
|
Is there a way to get ami to place the signal on a chart for the current cursor position only ?
/* Chandelier stop
By David Holzgrefe
7.05.2001*/
"\n Chandelier stop is a trailing stop that use the true average range atr(10) in this case * 2.5"+
" The length of the multiplier will impact on the profitability. Obviously, a larger multiplier will let larger trends develop but has the potential to leave larger profits on the table. A smaller multiplier will leave less profit on the table but increase whipsaw." ;
"";
writeval(atr(10)) + " ATR Value"; // change periods to suit
chandler=atr(10) *2.5; // Change the multiplier to suit
writeval(chandler) + " Chandelier value";
stopval= high-chandler;
writeval(stopval) + " Chandelier stop";
/*buy = 0;
sell = stopval;
*/
------=_NextPart_001_0068_01C0D7D0.08730920
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4613.1700" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#00ffff>
<DIV><FONT face=Arial size=2>Hi all Here a little afl that you may findhandy is
in the form af a Guru commentry..</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Is there a way to get ami to place the signal on a
chart for the current cursor position only ?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>/* Chandelier stop <BR>By David
Holzgrefe<BR>7.05.2001*/</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>"\n Chandelier stop is a trailing stop that use the
true average range atr(10) in this case * 2.5"+<BR>" The length of the
multiplier will impact on the profitability. Obviously, a larger multiplierwill
let larger trends develop but has the potential to leave larger profits on the
table. A smaller multiplier will leave less profit on the table but increase
whipsaw." ;<BR>"";</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>writeval(atr(10))
+ " ATR Value"; // change periods to suit
</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>chandler=atr(10) *2.5; // Change the
multiplier to suit <BR>writeval(chandler) + " Chandelier
value";<BR>stopval= high-chandler;<BR>writeval(stopval) + "
Chandelier stop";</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>/*buy = 0;<BR>sell =
stopval;<BR>*/</FONT></DIV></BODY></HTML>
------=_NextPart_001_0068_01C0D7D0.08730920--
Attachment:
Attachment:
Description: "Description: Binary data"
|