I will try it, Thankyou Bruce.
|
Hello, I need a pcf for the following
body of todays candle at least twice the height or more than the body of previous day's candle
todays volume more than yesterdays volume
|
Bruce, If you don't mind my asking, where did you learn how to code PCF's.
|
I can't find some books on how to write PCF codes on the net, anybody know of a few good books.
|
How would you write a PCF for the following;
1) A stock that has a volume spike of at least 2.5 to 3 times than that of its 50 day volume MA.
2) And a price gain on the same day of 4% or more.
Thankyou.
|
I will try that, Thanks Bruce.
|
I usually scan all U.S stocks. I am only getting no more than 12 or 15 hits at a time, sometimes no even that many. I thought my converssion code was no good.
|
I tried to convert this code that is not a PCF.
[daily sma (10,daily close) crosses daily ema(30,daily close) and [close >= 5]
This is how I wrote it, is this correct? I am getting very few hits with it.
C > AVGC10 AND XUP(AVGC10, XAVGC30) AND C >= C5
Thanks.
|
I tried to convert these to a PCF formula but I am getting errors. Could you convert the following:
[daily high <yesterday's daily high] AND [yesterday's daily high < 2 days ago daily high] AND [sma(10, close) > ema(30, close) ] AND [daily close > daily ema(30,daily close) ] AND [daily close < daily sma(10,daily close) ] AND [daily close > daily sma(200,daily close) AND [weekly sma(10,weekly close) >weekly ema(30,weekly close) ] [ADX LINE(10) > 20.0)
This is the second PCF conversion:
[sma (10, close) > ema(30, close) ] AND [daily close > daily ema(30,daily close) ] AND [daily close > daily sma(200,daily close) ] AND [weekly sma(10, weekly close) > weekly ema(30,weekly close) ] AND [ADX Line(10) > 20.0)
Thankyou again.
|