Registered User Joined: 7/19/2010 Posts: 25
|
Hi
can you help me please to create formula:
Do not include in result of scanning if Chaclin Money Flow 1 (current) > 0 and prrevios > 0
I am using 30 min time interval
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
This would mean you are looking for symbols where the current or previous 1-Period CMF is less than or equal to 0. You would set the Time Frame of the following Condition Formula to 30-Minutes:
2 * C <= H + L OR 2 * C1 <= H1 + L1
Chaikin Money Flow
Chaikin Money Flow Indicator
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 7/19/2010 Posts: 25
|
Hi Bruce
Let me clarify what i need:
Currrent CMF(1) can be > 0 or CMF(1) previous can be greater 0
I do not need condition 'and'
Time interval - 30 min.
Thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
That is completely different from the previous request. Please try the following instead:
2 * C > H + L OR 2 * C1 > H1 + L1
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 7/19/2010 Posts: 25
|
Hi. Can you please provide a formula for
Aroon (parameter is 1) , time interval is 30 min. I need 1 bar back and 2 bar back. thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The Up value of a 1-Period Aroon indicator could be written as:
100 * ABS(H = MAXH2)
The Down value of a 1-Period Aroon indicator could be written as:
100 * ABS(L = MINL2)
A 1-Period Aroon Oscillator indicator could be written as:
100 * ((L = MINL2) - (H = MAXH2))
The value 1-bar back involves adding 1 to all of the bars ago parameters. So Up would be:
100 * ABS(H1 = MAXH2.1)
Down would be:
100 * ABS(L1 = MINL2.1)
And the Oscillator would be:
100 * ((L1 = MINL2.1) - (H1 = MAXH2.1))
The value from 2-bars back involves incrementing the bars ago parameters again. So Up would be:
100 * ABS(H2 = MAXH2.2)
Down would be:
100 * ABS(L2 = MINL2.2)
And the Oscillator would be:
100 * ((L2 = MINL2.2) - (H2 = MAXH2.2))
You can set the Time Frame of the Indicator Formula by adjusting the Time Frame drop-down menu when you create or edit the formula. You can also set the Time Frame in most places where you would use a formula such as when the formula is used in a WatchList Column or EasyScan.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|