[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Auto Analyser



PureBytes Links

Trading Reference Links

Hello

The answer is:

LastBar = Cum(1) == LastValue( Cum(1) );

HH10 = HHV( H-L, 10 );

Filter = ( HH10 == LastValue( HH10 ) ) AND LastBar;

Buy = Filter; // if used in "Scan" mode
Sell = 0;

NumColumns =1;
Column0 = HH10;

This formula can be used in both Exploration and Scan modes.

Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com


----- Original Message ----- 
From: <colognetrader@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Tuesday, November 20, 2001 3:10 PM
Subject: [amibroker] Auto Analyser


> Hi AmiBroker`s
> 
> 
> 
> I want to create a filter wich shows me if today is the day with the 
> biggest range ( High - Low ) of the last 10 days! This means, the 
> ranges of every individual day from the last 10 days must be smaller 
> then the range of today!
> 
> Tank you!
> 
> 
> CT
> 
> 
> 
> 
> 
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
> 
> 
>