kevinvoisin |
Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Unsure |
|
Monday, October 26, 2009 |
Wednesday, April 2, 2014 11:01:53 AM |
24 [0.01% of all post / 0.00 posts per day] |
|
Thanks, that works just fine
|
I would like to create an indicator, the closing 3 bars in a row are higher than the last and also the reverse of that, so 3 bars are up in a row and also a 2nd indicator with 3 bars are down in a row. And then it would have to give me some sort of indication for each??
|
Thanks a lot Bruce, I'll try this
|
I have PCF's for dollar volume and for ATR15, I want to write a condition, to be true when my Dollar volume is > $30M and my ATR15 > 3.00 combining the 2
|
By looking back in the forums, I think I found my answer to my question.
|
I was wondering why the stock prices, using Heiken Ashi candles, are always different than the real quotes?
|
Thank you very much, I actully needed for Worden charts.
|
Can you give me a formula for this below that will work on TOS?
Calculation:
-
Define current "True Low" (TL) — the least of two values: the current minimum and the precious closing price.
TL (i) = MIN (LOW (i) || CLOSE (i - 1))
-
Find current "Buying Pressure" (BP). It is equal to the difference between current closing price and current True Low.
BP (i) = CLOSE (i) - TL (i)
-
Define the "True Range" (TR). It is the greatest of the following differences: current maximum and minimum; current maximum and previous closing price; current minimum and previous closing price.
TR (i) = MAX (HIGH (i) - LOW (i) || HIGH (i) - CLOSE (i - 1) || CLOSE (i - 1) - LOW (i))
-
Find the sum of BP values for all three periods of calculation:
BPSUM (N) = SUM (BP (i), i)
-
Find the sum of TR values for all three periods of calculation:
TRSUM (N) = SUM (TR (i), i)
-
Calculate the "Raw Ultimate Oscillator" (RawUO)
RawUO = 4 * (BPSUM (1) / TRSUM (1)) + 2 * (BPSUM (2) / TRSUM (2)) + (BPSUM (3) / TRSUM (3))
-
Calculate the "Ultimate Oscillator" (UO) value according to the formula:
UO = ( RawUO / (4 + 2 + 1)) * 100
Where:
MIN — means the minimum value;
MAX — the maximum value;
|| — a logical OR;
LOW (i) — the minimum price of the current bar;
HIGH (i) — the maximum price of the current bar;
CLOSE (i) — the closing price of the current bar;
CLOSE (i — 1) — the closing price of the previous bar;
TL (i) — the True Low;
BP (i) — the Buying Pressure;
TR (i) — the True Range;
BPSUM (N) — the mathematical sum of BP values for an n period (N equal to 1 corresponds with i=7 bars; N equal to 2 corresponds with i=14 bars; N equal to 3 corresponds with i=28 bars);
TRSUM (N) — the mathematical sum of TR values for an n period (N equal to 1 corresponds with i=7 bars; N equal to 2 corresponds with i=14 bars; N equal to 3 corresponds with i=28 bars);
RawUO — "Raw Ultimate Oscillator";
UO — stands for Ultimate Oscillator.
|
Thanks, that was a TSF (time series forecast) not TSV, would I just change the TSV to TSF?
|
Not sure how to write a custom PCF, eg- CCI 8 period hourly & DI+ DI- 8 period & TSF 7 Xing a 2 open MA, all hourly, then I want to use these for an Alert triggers.
|
|