peter3 |
Gold User, Member, TeleChart
|
Registered User |
|
|
|
|
Gender: |
|
Wednesday, October 20, 2010 |
Tuesday, March 3, 2020 5:55:36 PM |
36 [0.01% of all post / 0.01 posts per day] |
|
Is there anyway to make this a cutom pcf % true indicator and show when the indicator is below 10 or above 90?
|
Bruce, thanks. So how would I write that there must be at least 3 bars in a row but max out at 5 in a row.
|
Hi Bruce, this is how you write down 2 days in a row?
TrueInRow(C < C1, 2) = 2
How do you write 3 in a row?
|
thx Bruce, one last one, I promise :) How do i write a custom pcf true for that?
|
Hi Bruce,
One more thing, I'm trying to add the formula of bars lower 2 days in a row and then plot the dot on the bar when the next day is down at least 3% so I used this...
Try plotting this as a Custom PCF Indicator (not the % True version) set to use the Dot Plot Style in the same pane and scale as price.
(.97 * C1) / ABS(C1 > 10 AND AVGV21.1 >= 100000 AND C < C1 AND C < O AND H1 - L1 >= 1.1 * ATR10.2 AND 1600 * ABS((SUM(LOG(C1 / C2) ^ 2, 100) - LOG(C1 / C101) ^ 2 / 100) / 100) ^ .5 > 20 AND WRSI2 < 50 AND L <= .97 * C1)
But I also added C < C1 AND C1 < C2
and it did not work.
So I just want to simplify the code a bit...
can you write the code where Ican plot the dot on the bar? All I want is the stock closes lower 2 days in a row and is above its 100 day exponential moving average and for the day is down at least 3% and Average Volume for the past 20 days must be at least 100,000
Thanks
|
Thanks Bruce, one last question, if I want i to show for 5%, would I just change the 97 to 95? It didnt work and i also wanted to add that price needs to be above exponential moving average 100 but when I added C>XAVGC100 it didnt work as well.
|
also, how do I write a pcf where it shows that price closed lower at least 2 days in a row?
|
Thanks Bruce, One last question, the last pcf you wrote
C1 > 10 AND AVGV21.1 >= 100000 AND C < C1 AND C < O AND H1 - L1 >= 1.1 * ATR10.2 AND 1600 * ABS((SUM(LOG(C1 / C2) ^ 2, 100) - LOG(C1 / C101) ^ 2 / 100) / 100) ^ .5 > 20 AND WRSI2 < 50 AND L <= .97 * C1
is there anyway to show this where it happened on the price bar? For example, when price is down say 3% for that bar, can it show visually on the bar - like a dot or something at that mark? so I know where it was? Price might have fallen another 5% but I want to see where that 3% mark was on the bar.
|
Thnaks Bruce, can you pint me to the videos where I input the code above to scan? And where I input the code to see prior occurences where this happened for individual stocks?
|
Can you also help me with a seperate PCF for #8 above that shows the price is at least 3% lower sometime that day (meaning, doesn't have to gap down 3% like above), just is down at least 3% from the previous day's close.
|
|