mrcauldwell |
Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Gender: |
|
Saturday, December 18, 2010 |
Sunday, April 13, 2014 8:34:40 AM |
5 [0.00% of all post / 0.00 posts per day] |
|
If
MACD Histogram Today
(XAVGC20-XAVGC40)-(XAVG(XAVGC30,20)-XAVG(XAVGC40,30))
Does that mean that MACD Histogram ticking up can be calculated by this formula?
(XAVGC20-XAVGC40)-(XAVG(XAVGC30,20)-XAVG(XAVGC40,30)) > (XAVGC20.1-XAVGC40.1)-(XAVG(XAVGC30.1,20)-XAVG(XAVGC40.1,30))
Thank you!
|
I would like to create a custom indicator, but don't know how to write the code in TC2000 v.12.2 to enable it. I would like it to do this:
IF (MACD-Histogram ticks up) AND (20EMA ticks up), THEN return green
IF (MACD-Histogram ticks up) AND (20EMA ticks down), THEN return blue
IF (MACD-Histogram ticks down) AND (20EMA ticks up), THEN return blue
IF (MACD-Histogram ticks down) AND (20EMA ticks down), THEN return red
Any help would be much appreciated. Thanks!
|
Thanks Bruce, that seems to be working great.
I am having problems with creating the condition that a new price high has been made in the last 20 days, but again the code I have written doesn't seem to work.
if Price.High > Price.MaxHigh(20, 1) then pass
Thanks
|
Hello,
I have also copied and pasted the code to create the ttm squeeze indicator in stockfinder 5. I was wondering if someone could give a brief explanation about the levels we are looking for on the indicator.
For example, less than 1 is when the squeeze is on.
Or, as shown in the ttm video, if we plot the indicator as a bar chart, a possible exit signal is two consecutive declining bars.
Thanks
|
Hello,
I'm trying to write code to express:
if the highest high in the last 2 days is greater than the highest high in the last 10 days, then pass.
I wrote this code but it doesn't seem to be working when I use it as a scan:
If (Price.MaxHigh(2) > Price.MaxHigh(8.2)) then pass
Any help would be greatly appreciated. Thanks,
Richard
|
|