Various Indicators (Squeeze,2FastMa's,etc) - Page 3 - Traders Laboratory

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 Display Modes
 
Old 04-03-2008, 07:35 AM
Blu-Ray's Avatar
Blu-Ray Blu-Ray is offline
Blu-Ray is or is not online

Trader Specs
 
Join Date: Nov 2006
Location: England
Posts: 401
Thanks: 92
Thanked 34 Times in 22 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
  #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, 571 views)
Attached Files
File Type: eld BR_2EMA_COLOR.ELD (3.9 KB, 86 views)
Thanks: 92
Thanked 34 Times in 22 Posts
Reply With Quote
  #21 (permalink)  
By TipsyTzar on 04-21-2008, 08:19 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Awsome! Thank you!
Thanks: 0
Thanked 0 Times in 0 Posts
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, 70 views)
Thanks: 2
Thanked 1 Time in 1 Post
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?
Thanks: 8
Thanked 0 Times in 0 Posts
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?
Thanks: 0
Thanked 0 Times in 0 Posts
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?
Thanks: 0
Thanked 0 Times in 0 Posts
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, 363 views)
Thanks: 92
Thanked 34 Times in 22 Posts
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.
Thanks: 0
Thanked 0 Times in 0 Posts
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, 287 views)
File Type: png input1a.png (89.3 KB, 293 views)
File Type: png squeeze1b.png (16.1 KB, 286 views)
File Type: png key.png (12.8 KB, 282 views)
Attached Files
File Type: eld BR_SQUEEZE_RADAR.ELD (7.8 KB, 59 views)
Thanks: 92
Thanked 34 Times in 22 Posts
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...
Thanks: 0
Thanked 0 Times in 0 Posts
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

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


All times are GMT -4. The time now is 06:12 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 60 61 62 63 64 65 66 67 68 69 70