|
|
|
|
|||||||
| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() |
|
|
LinkBack | Release Tools | Display Modes |
|
Various Indicators (Squeeze,2FastMa's,etc)
Developer Last Online: Jul 2008
Here is a bundle of indicators for you, the development of them were requested as per this thread.
http://www.traderslaboratory.com/for...tion-3168.html I have been hesitant to post these as some of them are NOT the same as per the above thread. But due to several requests recently I'm posting them anyway. The attached indicators are: BR_CCi : Which is basically a smoothed CCi. BR_RSI : Which again is a smoothed RSi. BR_Momentum : Again a smoothed Momentum ( Can't believe people would actually charge for these )BR_PaintBars : MA based trend bars. BR_2FastMa's : Self explanatory. BR_Squeeze : Partly based on the original squeeze ( as we all know it ), but the histogram is defined to show clearer divergences. Also includes CounterTrend and an alternative midline. BR_HeatMeter : Can you take the heat ! ( well actually it's just a 50 period CCi )For more information on the indicators, please go to the above thread for details. See Attached Charts to show each indicator. ![]() ![]() ![]() Can I just stress that some of these are NOT THE SAME, so take them with a pinch of salt ![]() Cheers Blu-Ray |
||||||||||||
|
Show Your Support
|
||||||||||||
|
|
||||||||||||
|
By
dovetree
on
04-05-2008, 06:10 PM
|
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
Hi Blu-Ray, Thanks for these. I noticed that your squeeze seems to be a little different to the original. Specifically it seems to filter out some "false squeezes". I use Ts 2000i could you please post the code for this if possible.
thanks |
|
By
Blu-Ray
on
04-05-2008, 06:43 PM
|
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
Cheers Blu-Ray |
|
By
garp
on
04-08-2008, 09:30 PM
|
|||||||||||||||
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
Sorry, its a problem with PL Editor. Everithing works fine on another computer except BR Squeeze, which even doesn't arrive in PL Editor for importing and compiling. |
|||||||||||||||
|
Last edited by garp; 04-08-2008 at 09:49 PM.
|
|||||||||||||||
|
By
Blu-Ray
on
04-15-2008, 07:45 AM
|
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
Here's the code :
Inputs: SqLength(20), Length1(9), Length2(13), Length3(21), CounterTrendMode(false), ChangeMidLine(false), nK(1.5), nBB(2), AlertLine( 1 ); vars: CCiValue(0),DownCT(0),UpC T(0),SDev(0),ATR(0),LHMul t(0),Denom(0),BBS_Ind(0); if ChangeMidLine = false then begin {MiddleLine - based on BB Squeeze} if ( barnumber=1 ) then Begin If minmove <> 0 then LHMult = pricescale/minmove; end; {-- Calculate BB Squeeze Indicator ----------------------} ATR = AvgTrueRange(SqLength); SDev = StandardDev(close, SqLength, 1); Denom = (nK*ATR); If Denom <> 0 then BBS_Ind = (nBB * SDev) /Denom; If BBS_Ind < Alertline then SetPlotColor(1, Red) else SetPlotColor(1, Blue); if BBS_Ind crosses below AlertLine then SetPlotColor(1, green); {-- Plot the Index & Alert Line -------------------------} Plot1(0, "Squeeze"); end; if ChangeMidLine = true then begin {MiddleLine - based on a Hull Moving Average} value1 = jthma(H/3+L/3+C/3,Length3); if (Value1) > (Value1[1]) then SetPlotColor(1, green); if (Value1) < (Value1[1]) then SetPlotColor(1, red); Plot1(0, "Squeeze"); end; {Histogram - based on two ema's of Hull MA's} value3 = xaverage(jthma(close, length1),Length2) - xaverage( jthma(close, length2), length2+7 ); plot4(value3,"DiffHisto") ; if value3 > 0 then if value3 > value3[1] then setplotcolor(4,green) else setplotcolor(4,darkgreen) ; if value3 < 0 then if value3 < value3[1] then setplotcolor(4,red) else setplotcolor(4,darkred); {++++++++++++++++++++++++ +++++++++++++++++++++++++ +++++++++++++++++++++++++ ++++++++++} { Counter Trend Mode - Based on when cci(13) gets below 50 and stays dark red until going back above 100} if CounterTrendMode = true then begin CCiValue = CCi(13); Condition1 = ccivalue[1] > 50; Condition2 = CCivalue < 50; Condition3 = CCivalue[1] < 100; Condition4 = CCiValue > 100; Condition5 = value3 > 0; Condition6 = value3[1] > 0; Condition7 = value3[2] > 0; Condition8 = ccivalue < 100; if Condition1 and Condition2 and Condition5 and condition6 and condition7 then begin setplotcolor(4,DarkRed); DownCT = 1; end; if DownCT = 1 and value3 < 0 then DownCT =0; if DownCT = 1 and Condition8 and Condition5 then setplotcolor(4,darkred); if DownCT = 1 and Condition3 and Condition4 then begin setplotcolor(4,green); DownCT = 0; end; Condition11 = ccivalue[1] < -50; Condition12 = CCivalue > -50; Condition13 = CCivalue[1] >- 100; Condition14 = CCiValue < -100; Condition15 = value3 < 0; Condition16 = value3[1] < 0; Condition17 = value3[2] < 0; Condition18 = ccivalue >-100; if Condition11 and Condition12 and Condition15 and condition16 and condition17 then begin setplotcolor(4,DarkGreen) ; UpCT = 1; end; if UpCT = 1 and value3 > 0 then UpCT =0; if UpCT = 1 and Condition18 and Condition15 then setplotcolor(4,darkgreen) ; if UpCT = 1 and Condition13 and Condition14 then begin setplotcolor(4,Red); UpCT = 0; end; end; Cheers Blu-Ray |
|
By
moneymarkets
on
04-15-2008, 06:58 PM
|
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
Thanks Blu-Ray for your Excellent Programming. I am also having problems with this in Multicharts. I also copied the above code, and get no plot. If anyone can get this to plot in Multicharts, please share it.
![]() |
![]() |
| Currently Active Users Viewing This Release: 1 (0 members and 1 guests) | |
| Release Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Release | Release Starter | Category | Comments | Last Post |
| BB Squeeze Replica For Tradestation | Soultrader | Trading Indicators | 29 | 06-23-2008 08:50 PM |
| BB Squeeze (Version of TTM Squeeze) | ashokkuttan | Market Analysis | 24 | 06-10-2008 10:20 PM |
| Does anyone have the squeeze indicator | pajusa | Beginners Forum | 24 | 05-21-2008 11:17 AM |
| BB Squeeze indicator | januson | Technical Analysis | 2 | 03-17-2007 06:14 PM |
| Squeeze base indicators | januson | Coding Forum | 2 | 03-16-2007 06:06 PM |