To forum users far and wide,
I have been using Beyond Charts + with a weekly scan formula to filter out / identify potential stocks to buy within the ASX market / DJIA/ Nasdaq etc.
To reduce my trading costs (yearly data subscription) I would like to use the ProReal Time trading platform as I use the IG platform to buy/sell stocks.
The formula I use which I apply to a particular market is as follows;
( Go long when price is above X period moving average AND above X period high AND volume has increased by 1.25 times and there is enough liquidity to get into the stock determined by an X average of closing prices over X period of time AND the buy signal only appears on a green candle AND to avoid penny stocks )
close_above_MA: = C>Mov (C,60,E);
closeHHV: = C>Ref (HHV(C,25),-1);
increase_volume: = V>1.25*Mov (V,12,E);
liquidity: = mov (C*V,30,S) > 1000000;
signal_on_green: = C>O;
no_penny: = C >0.20;
no_expensive_stocks:= C<10;
buy:= close_above_MA AND closeHHV AND increase_volume AND liquidity AND signal_on_green AND no_penny AND no_expensive_stocks;
buy;
Hoping this formula will somehow convert into ProTime with a forum users help.
Thanking someone in anticipation.
mjharm