Go Back   Traders Laboratory > Trading Resources > Trading Indicators

Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL.

Comment
Bookmarks
del.icio.us StumbleUpon Google Digg Facebook Furl Reddit Netscape

 
LinkBack Release Tools Display Modes Language
Various Indicators (Squeeze,2FastMa's,etc)
Software Version: , by Blu-Ray (Premium Trader) Blu-Ray is offline
Developer Last Online: May 2008

Trading Platform: Rating: Release Rating: 1 votes, 5.00 average.
Release Date: 04-03-2008 Last Update: n/a Installs: 41
 Beta Stage

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

  • To receive notifications regarding updates -> Click to Mark as Installed.
  • If you like this indicator, please consider donating to the developer.
  • This modification may not be copied, reproduced or published elsewhere without the author's permission.
 
By swansjr on 04-03-2008, 05:36 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Thanks for all your hard work. Where should I send my money?
Reply With Quote
  #1 (permalink)  
By Blu-Ray on 04-03-2008, 05:44 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Thanks, hehehe ...........they're all free !!!
Reply With Quote
  #2 (permalink)  
By btrader2 on 04-03-2008, 09:50 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Excellent work Blu-Ray!
Reply With Quote
  #3 (permalink)  
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
Reply With Quote
  #4 (permalink)  
By Blu-Ray on 04-05-2008, 06:43 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Quote:
View Post
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
Yes no problems, but I'm away now for a week, so I'll sort it out when I get back, just send me a PM in a week's time to remind me on.

Cheers

Blu-Ray
Reply With Quote
  #5 (permalink)  
By garp on 04-08-2008, 09:30 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Quote:
View Post
Yes no problems, but I'm away now for a week, so I'll sort it out when I get back, just send me a PM in a week's time to remind me on.

Cheers

Blu-Ray
I have a problem with importing all these indicators in Multicharts. Program returns Error code 1. Would it be possible to post the code?

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.
Reply With Quote
  #6 (permalink)  
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
Reply With Quote
  #7 (permalink)  
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.
Reply With Quote
  #8 (permalink)  
By btrader2 on 04-15-2008, 07:28 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

I compiled it as is using MC 3.0. Not familiar with the indicator tho.
Attached Images
File Type: png BRs Squeeze.png (12.6 KB, 73 views)
Reply With Quote
Comment



Currently Active Users Viewing This Release: 1 (0 members and 1 guests)
 
Release Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Release Release Starter Category Comments Last Post
BB Squeeze (Version of TTM Squeeze) ashokkuttan Market Analysis 23 05-01-2008 06:18 PM
Does anyone have the squeeze indicator pajusa Beginners Forum 23 03-18-2008 09:31 AM
BB Squeeze Replica For Tradestation Soultrader Trading Indicators 27 01-23-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


All times are GMT -4. The time now is 10:00 PM.

 


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59