Gold Customer
Joined: 11/17/2017 Posts: 14
|
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.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
For the first conversion, you would need to make a daily PCF.
H < H1 AND H1 < H2 AND AVGC10 > XAVGC30 AND C > XAVGC30 AND C < AVGC10 AND C > AVGC200 AND ADX10.10 > 20
And a weekly PCF.
AVGC10 > XAVGC30
And add them to the same scan.
For the second conversion, you would need to make a daily PCF.
AVGC10 > XAVGC30 AND C > XAVGC30 AND C > AVGC200 AND ADX10.10 > 20
You can re-use the weekly PCF from the first conversion and it it the same scan as the daily PCF.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Gold Customer
Joined: 11/17/2017 Posts: 14
|
Thankyou Bruce.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|