Various Indicators (Squeeze,2FastMa's,etc) - Page 3 - Traders Laboratory
Forum Guidelines | Contact Us
Home

Go Back   Traders Laboratory > Trading Resources > Trading Indicators

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


Comment
 
LinkBack Release Tools
 
Old 04-03-2008, 07:35 AM
Blu-Ray's Avatar
Blu-Ray Blu-Ray is offline
Blu-Ray has no status.

Trader Specs
 
Join Date: Nov 2006
Location: England
Posts: 427
Thanks: 105
Thanked 54 Times in 35 Posts
This member is the original thread starter. 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...
Attached Images
File Type: png 3_Smoothed.png (23.8 KB, 2313 views)
File Type: png squeeze.png (24.8 KB, 2352 views)
File Type: png Heatmeter.png (19.0 KB, 2314 views)
Attached Files
File Type: eld BR_2FASTMA'S.ELD (5.3 KB, 435 views)
File Type: eld BR_CCI.ELD (4.0 KB, 346 views)
File Type: eld BR_HEATMETER.ELD (4.0 KB, 362 views)
File Type: eld BR_MOMENTUM.ELD (5.2 KB, 342 views)
File Type: eld BR_PAINTBARS.ELD (5.2 KB, 399 views)
File Type: eld BR_RSI.ELD (4.1 KB, 336 views)
File Type: eld BR_SQUEEZE.ELD (62.1 KB, 556 views)

__________________
Remember - Take the path of least resistance.
Reply With Quote
The Following 5 Users Say Thank You to Blu-Ray For This Useful Post:
alex_laxya (10-07-2008), max-td (10-02-2008), Nirvana (07-27-2008), Soultrader (10-08-2008), thetatrader (08-13-2008)
  #20 (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, 772 views)
Attached Files
File Type: eld BR_2EMA_COLOR.ELD (3.9 KB, 121 views)
Reply With Quote
  #21 (permalink)  
By TipsyTzar on 04-21-2008, 08:19 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Awsome! Thank you!
Reply With Quote
  #22 (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, 113 views)
Reply With Quote
  #23 (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
  #24 (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
  #25 (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
  #26 (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, 566 views)
Reply With Quote
  #27 (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
  #28 (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, 486 views)
File Type: png input1a.png (89.3 KB, 497 views)
File Type: png squeeze1b.png (16.1 KB, 490 views)
File Type: png key.png (12.8 KB, 483 views)
Attached Files
File Type: eld BR_SQUEEZE_RADAR.ELD (7.8 KB, 99 views)
Reply With Quote
  #29 (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: 1 (0 members and 1 guests)
 
Release Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Release Release Starter Category Comments Last Post
BB Squeeze Replica For Tradestation Soultrader Trading Indicators 47 10-05-2008 12:47 AM
BB Squeeze (Version of TTM Squeeze) ashokkuttan Market Analysis 26 08-14-2008 01:34 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


All times are GMT -4. The time now is 04:07 PM.