Custom FP/HRFP Indicator for ThinkOrSwim July 16, 2013 08:13AM |
Registered: 10 years ago Posts: 615 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim July 16, 2013 10:51AM |
Registered: 10 years ago Posts: 15 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim July 16, 2013 12:45PM |
Registered: 11 years ago Posts: 171 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim August 20, 2013 09:08AM |
Registered: 9 years ago Posts: 21 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim August 20, 2013 09:30AM |
Registered: 11 years ago Posts: 321 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim August 20, 2013 03:38PM |
Registered: 10 years ago Posts: 615 |
Quote
Wallemac
Robert - this is a great study.
Quote
Wallemac
yesterday it started to act strangely.
not sure if its due to TOS update 2 days ago or not.
are you having any problems?
Walt
Re: Custom FP/HRFP Indicator for ThinkOrSwim August 20, 2013 03:54PM |
Registered: 10 years ago Posts: 615 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim August 21, 2013 04:16PM |
Registered: 11 years ago Posts: 321 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim August 21, 2013 05:10PM |
Registered: 10 years ago Posts: 35 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim August 21, 2013 05:16PM |
Registered: 10 years ago Posts: 615 |
Quote
mtut
Thanks Robert, I have implemented your indicator into my everyday trading. I have also converted your code into a column. However, due to the current restraints of TOS, you can not set it for any type of custom timeframe. Have to use 60 or 20 instead of 55 and 21
Re: Custom FP/HRFP Indicator for ThinkOrSwim September 11, 2013 03:32PM |
Registered: 9 years ago Posts: 21 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim September 11, 2013 03:47PM |
Registered: 10 years ago Posts: 52 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim September 13, 2013 01:31PM |
Registered: 9 years ago Posts: 5 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim September 15, 2013 08:50AM |
Registered: 10 years ago Posts: 92 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim September 15, 2013 10:40AM |
Registered: 10 years ago Posts: 615 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim September 15, 2013 07:50PM |
Registered: 10 years ago Posts: 92 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim September 15, 2013 08:46PM |
Registered: 10 years ago Posts: 615 |
Quote
RaleighTrader
I noticed on one of your screen shots (for Netflix) that you had a 20 day, 13 min timeframe. Is there a way to customize such timeframes on TOS Charts? Just curious, thanks much!
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 26, 2013 10:47AM |
Registered: 9 years ago Posts: 2 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 26, 2013 11:27AM |
Registered: 10 years ago Posts: 615 |
Quote
Modata
I am a GW 1-5 student and am using your indicator and am finding it very useful. Would you kindly share with me how to convert it into a scan for TOS?
def CCr = Average(close,2); def CCg = Average(close[3],3); def C1 = if (CCr[0] > CCg[0] AND CCr[1] < CCg[1]) then 1 else if (CCr[0] < CCg[0] AND CCr[1] > CCg[1]) then -1 else 0; def RSI = RSIWilder(length = 13).RSI; def highestRSI = Highest(RSI, 21); def lowestRSI = Lowest(RSI, 21); def RSIS = (RSI - lowestRSI) / (highestRSI - lowestRSI); def Kpd = Average(RSIS, 3); def Dpd = Average(Kpd, 5); def C2 = if (Kpd[0] > Dpd[0] AND Kpd[1] < Dpd[1]) then 1 else if (Kpd[0] < Dpd[0] AND Kpd[1] > Dpd[1]) then -1 else 0; def MACDr = ExpAverage(close,8) - ExpAverage(close,13); def MACDg = ExpAverage(MACDr,5); def C3 = if (MACDr[0] > MACDg[0] AND MACDr[1] < MACDg[1]) then 1 else if (MACDr[0] < MACDg[0] AND MACDr[1] > MACDg[1]) then -1 else 0; def DIr = DIPlus(5); def DIg = DIMinus(5); def C4 = if (DIr[0] > DIg[0] AND DIr[1] < DIg[1]) then 1 else if (DIr[0] < DIg[0] AND DIr[1] > DIg[1]) then -1 else 0; def Count = C1 + C2 + C3 + C4; plot Decision = if Count >=3 OR Count <=-3 then 1 else double.nan;
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 26, 2013 04:52PM |
Registered: 9 years ago Posts: 2 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 30, 2013 01:01PM |
Registered: 9 years ago Posts: 2 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 30, 2013 02:14PM |
Registered: 10 years ago Posts: 615 |
Quote
26htailog
Is it possible to write a formula for HRFP in TC2000?
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 30, 2013 05:35PM |
Registered: 9 years ago Posts: 2 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 30, 2013 06:24PM |
Registered: 9 years ago Posts: 5 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 30, 2013 09:22PM |
Registered: 10 years ago Posts: 615 |
Quote
jmkiritsis
Just curious how did you add that trigger line to your DMI study? I can't find where to add the band? Is it a custom ADX study?
# DI Indicator with Trigger Line declare lower; input DI_length = 5; plot "DI+" = DIPlus(DI_length); "DI+".SetDefaultColor(Color.RED); "DI+".SetLineWeight(2); plot "DI-" = DIMinus(DI_length); "DI-".SetDefaultColor(Color.GREEN); "DI-".SetLineWeight(2); plot trigger = 10; trigger.SetDefaultColor(Color.GRAY);
plot trigger = 10; trigger.SetDefaultColor(Color.GRAY);
Re: Custom FP/HRFP Indicator for ThinkOrSwim December 30, 2013 09:58PM |
Registered: 10 years ago Posts: 615 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim January 28, 2014 05:07PM |
Registered: 9 years ago Posts: 100 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim February 11, 2014 05:46PM |
Registered: 9 years ago Posts: 5 |
Re: Custom FP/HRFP Indicator for ThinkOrSwim February 11, 2014 06:03PM |
Registered: 10 years ago Posts: 615 |
Quote
jmkiritsis
I set up your FP/HRFP scan. Thanks so much for the tutorial!. Do you know of any way to have it scan on a custom 233 time frame instead of a daily time frame? I didn't see that option but just curious if you knew if it was possible.
Re: Custom FP/HRFP Indicator for ThinkOrSwim February 11, 2014 11:00PM |
Registered: 9 years ago Posts: 5 |