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
 
Old 04-03-2008, 07:35 AM
Blu-Ray's Avatar
Blu-Ray Blu-Ray is offline
Premium Trader

Trader Specs
 
Join Date: Nov 2006
Location: England
Posts: 355
Thanks: 60
Thanked 19 Times in 14 Posts
Various Indicators (Squeeze,2FastMa's,etc)

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...

__________________
Remember - Take the path of least resistance.
Reply With Quote
  #18 (permalink)  
By Blu-Ray on 04-21-2008, 05:09 AM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Quote:
View Post
Blue Ray, those look great. Would you be able to code (for TS) the slower MA's (the two dotted ones)? It makes for a great study for a beginner like me (as well as learning how to code). Thanks!!

Yes, No probs, here you go..........I've coded it up as per pic on website, but I've missed out the darkred section as that is when you the 2 MA's are within are certain distance ( and for that reason you need to select stocks,futures or forex ) ....... probably unnecessary as you can eyeball when they are very close.



and the code :

Inputs:
Price(Close),
Length1(49),
Length2(89),
UpColor(Green),
DnColor(Red),
EarlyWarnColor(Yellow);

Vars:
FastEMA(0),SlowEMA(0);


FastEMA = xaverage(Price,Length1);
SlowEMA = xaverage(Price,Length2);

Plot1(FastEMA,"FastEMA");
Plot2(SlowEMA,"SlowEMA");

if FastEMA > SlowEMA then begin
setplotcolor(1,UpColor);
setplotcolor(2,UpColor);
end;

if FastEMA > SlowEMA and close < FastEMA then begin
setplotcolor(1, EarlyWarnColor);
setplotcolor(2, EarlyWarnColor);
end;

if FastEMA < SlowEMA then begin
setplotcolor(1,dnColor);
setplotcolor(2,dnColor);
end;

if FastEMA < SlowEMA and close > FastEMA then begin
setplotcolor(1, EarlyWarnColor);
setplotcolor(2, EarlyWarnColor);
end;



Hope this helps

Blu-Ray
Attached Images
File Type: png 2EMAColor.png (12.7 KB, 328 views)
Attached Files
File Type: eld BR_2EMA_COLOR.ELD (3.9 KB, 48 views)
Reply With Quote
  #19 (permalink)  
By TipsyTzar on 04-21-2008, 08:19 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Awsome! Thank you!
Reply With Quote
  #20 (permalink)  
By momentom on 04-26-2008, 04:42 AM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Here it is for MC. Unzip before import.
Attached Files
File Type: rar BR_Squeeze.rar (3.3 KB, 25 views)
Reply With Quote
  #21 (permalink)  
By Blu Bull on 05-04-2008, 07:53 AM
Re: Various Indicators (Squeeze,2FastMa's,etc)

any chance of getting the BR squeeze indicator for Ninja Trader?
Reply With Quote
  #22 (permalink)  
By whygood on 05-08-2008, 02:43 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Quote:
View Post
Here it is for MC. Unzip before import.
There is any difference between the version for TS and the version for MC??, the Multicharts should import the ELD for TS without any problem..right?
Reply With Quote
  #23 (permalink)  
By RMos22 on 05-10-2008, 03:54 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Excellent work, Blue Ray. Have you looked at the Itunnel indicator?
Seems like regular ma's, but have you figured out the settings that he used?
Reply With Quote
  #24 (permalink)  
By Blu-Ray on 05-11-2008, 07:18 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Quote:
View Post
Excellent work, Blue Ray. Have you looked at the Itunnel indicator?
Seems like regular ma's, but have you figured out the settings that he used?
Hi there

I've never really looked at it, but here's probably what it's based on, try inserting a keltner channel, 20 periods with an ATR 0.5, this is a close comparison but not exact.

Cheers

Blu-Ray

Attached Images
File Type: jpg comparison.jpg (168.2 KB, 112 views)
Reply With Quote
  #25 (permalink)  
By RMos22 on 05-11-2008, 10:15 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Thanks Blue Ray. Now your suite of PBF indicators is complete.
Reply With Quote
  #26 (permalink)  
By Blu-Ray on 05-14-2008, 07:59 AM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Here's the radarscreen version of the BR_Squeeze.

I've coded it up so that you can have a choice of which squeeze you want to view, as in the traditional squeeze set the input to true, or if you want to use the other style squeeze set it to false. Just remember when inserting it onto radarscreen you'll need to load additional bars ( see pic ).

Hope this helps

Blu-Ray


Attached Images
File Type: png squeeze1a.png (14.3 KB, 53 views)
File Type: png input1a.png (89.3 KB, 54 views)
File Type: png squeeze1b.png (16.1 KB, 54 views)
File Type: png key.png (12.8 KB, 51 views)
Attached Files
File Type: eld BR_SQUEEZE_RADAR.ELD (7.8 KB, 15 views)
Reply With Quote
  #27 (permalink)  
By chipper on 05-14-2008, 10:35 AM
Re: Various Indicators (Squeeze,2FastMa's,etc)

many thanks Blu-Ray...have not had time to look at EOTPRO in detail again, but would like to review for entire groups benefit...hope i can contribute something for everyone...
Reply With Quote
Comment



Currently Active Users Viewing This Release: 3 (2 members and 1 guests)
fullyautomatix12, swansjr
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 01:27 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