PureBytes Links
Trading Reference Links
|
Does anyone know if this ELD code is useful at all, and if so, can it
be converted to MS? I believe it uses Renko charts:
-------------------------------------
inputs:
Brick(0.0003);
vars:
Var0( 0), Var1( 0), Var2( 0);
{ **** Code section **** }
#EVENTS
OnDestroy = EasyLanguageRtlOnDestroy;
#END ;
begin
;
If CLOSE > Var1 + Brick then
begin
Var1 = Var1 + Brick;
Var0 = Var1;
PLOT1 (Var1, "Up");
end;
If CLOSE < Var0 - Brick then
begin
Var0 = Var0 - Brick;
Var1 = Var0;
PLOT2 (Var0, "DN");
end;
----------------------------------
Thanks in advance.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|