Hi All,
Can anyone recommend a software to scan for stocks with certain criteria's?
A modicum of Logic and programming Boolean function must be considered indispensible.I am after software that is easy to use and understand for beginners at coding language something which is very basic and can be used easily?
I know Amibroker and other softwares can do it, but I just can't understand all these scripts and coding language.
appreciate any help.
cheers
leyy
Hi All,
Can anyone recommend a software to scan for stocks with certain criteria's?
I am after software that is easy to use and understand for beginners at coding language something which is very basic and can be used easily?
I know Amibroker and other softwares can do it, but I just can't understand all these scripts and coding language.
appreciate any help.
cheers
leyy
Filter = C > O;
Filter = Close > Open;
Filter = C > O AND Status( "LastBarInRange" );
Filter = C > O AND Status( "LastBarInRange" ) AND InWatchlist( 0 );
Filter = C > O AND Status( "LastBarInRange" ) AND InWatchlist( 0 ) AND NOT IndustryID(1) == "Software & Programming";
Filter = C > O AND Status( "LastBarInRange" ) AND InWatchlist( 0 ) AND NOT IndustryID(1) == "Software & Programming";
AddColumn( Close, "Close", 1.2);// outputs bar's Close price, two decimal places
Addcolumn( Open , "Open", 1.2);// outputs bar's Open price, two decimal places
AddColumn( Close - Open, "Close minus Open", 1.1);// outputs Close minus Open, one decimal place
Addcolumn( ROC( C, 1 ) , "Rate Of Change", 1.1); // outputs 1 bar percent rate-of-change of the closing prices, one decimal place
...
I am after software that is easy to use and understand for beginners at coding language something which is very basic and can be used easily?
I know Amibroker and other softwares can do it, but I just can't understand all these scripts and coding language.
Hello and welcome to Aussie Stock Forums!
To gain full access you must register. Registration is free and takes only a few seconds to complete.
Already a member? Log in here.