Various Indicators (Squeeze,2FastMa's,etc) - Page 6 - 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: 421
Thanks: 105
Thanked 52 Times in 34 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, 2249 views)
File Type: png squeeze.png (24.8 KB, 2289 views)
File Type: png Heatmeter.png (19.0 KB, 2251 views)
Attached Files
File Type: eld BR_2FASTMA'S.ELD (5.3 KB, 413 views)
File Type: eld BR_CCI.ELD (4.0 KB, 331 views)
File Type: eld BR_HEATMETER.ELD (4.0 KB, 345 views)
File Type: eld BR_MOMENTUM.ELD (5.2 KB, 328 views)
File Type: eld BR_PAINTBARS.ELD (5.2 KB, 384 views)
File Type: eld BR_RSI.ELD (4.1 KB, 320 views)
File Type: eld BR_SQUEEZE.ELD (62.1 KB, 531 views)

__________________
Remember - Take the path of least resistance.
Reply With Quote
The Following 4 Users Say Thank You to Blu-Ray For This Useful Post:
alex_laxya (Yesterday), max-td (10-02-2008), Nirvana (07-27-2008), thetatrader (08-13-2008)
  #50 (permalink)  
By lionelhhn on 07-13-2008, 01:15 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

BR,

Think I figured the problem. Common error is ..unknown function call:jtHMA.

Reckon thats why the rest of the indi does not compile.


Cheers
Reply With Quote
  #51 (permalink)  
By januson on 07-13-2008, 02:49 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

lionelhhn, here is a jtHMA, which I use:

{jtHMA - Hull Moving Average Indicator} {Author: Atavachron} {May 2005} { Inputs: ------- price: the time series being smoothed, usually Close, High, etc, but could be RSI(Close, 25) for example. length: the length of the MA, pretty meaningless in the normal sense of moving averages, as this quantity is heavily modified in the code. You need to experiment, do not just use a setting of 20 because that is what works for you with Simple Moving Averages. zeroLine: if you are using this in an indicator pane, you might want to display a centre line of some sort, ths allows one to set its value zeroVisible: boolean variable, determines whether the centre line (zeroLine) is plotted. upColour: If you wish to differentiate upward movements by colour coding. downColour: If you wish to differentiate downward movements by colour coding. colourDeltaBar: Set this to 1 if you wish the colour change to be effective on the actual bar where the direction change occurred. Set this to 0 for default behaviour. All other values are pretty meaningless. } Inputs: price(Close), length(21), zeroLine(0.0), zeroVisible(false), upColour(Blue), downColour(Red), colourDeltaBar(1); Value1 = jtHMA(price, length); Plot1(Value1, "jtHMA"); If ZeroVisible = true then Plot2(zeroLine, "Zero"); { Color criteria } if (Value1 > Value1[1]) then SetPlotColor[colourDeltaBar](1, upColour) else if (Value1 < Value1[1]) then SetPlotColor[colourDeltaBar](1, downColour);
Reply With Quote
  #52 (permalink)  
By Blu-Ray on 07-13-2008, 02:52 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Quote:
View Post
BR,

Think I figured the problem. Common error is ..unknown function call:jtHMA.

Reckon thats why the rest of the indi does not compile.


Cheers

I enclosed the jtHMA function within the word doc.


Cheers

Blu-Ray


ps: thanks Januson for also attaching the function
Reply With Quote
  #53 (permalink)  
By januson on 07-13-2008, 02:54 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Quote:
View Post
All the indicators are based on that aspect, as this thread was introduced for the PBF replicas and that is what their indicators are all based on.
I think I need a little help then.. could you point my to an indicator which takes volume into the equation? What is PBF?

I'll post KlingerGoslin as soon Im sitting in front of my trading pc..
Reply With Quote
  #54 (permalink)  
By Blu-Ray on 07-13-2008, 03:03 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Quote:
View Post
I think I need a little help then.. could you point my to an indicator which takes volume into the equation? What is PBF?

I'll post KlingerGoslin as soon Im sitting in front of my trading pc..
Yes... no problems I'll help you........What aspect of volume are looking for, or possibly rephrasing the question, what are kind of indicator are you looking for? ( what do you want it to show you ).

PBF = PaintBarFactory.......... .... this is where I replicated the indicators from.

I've just downloaded the KlingerGoslin from the TS forums, have you found anything beneficial about it, if so, what?

Cheers

Blu-Ray
Reply With Quote
  #55 (permalink)  
By lionelhhn on 07-13-2008, 03:47 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Thanks Januson and BR

Your kindness and help is really appreciated.

Well both codes did not compile. My reasoning is if I can compile jthma then the rest would be a breeze. Will do more figuring out.

Januson.....malcolm robinson introduced some volume buy/sell histogram.
www.futures-day-trader.com He talks about it here.
Some inquiries on this indicator also in NT forum

Thanks again . Blessings !
Reply With Quote
  #56 (permalink)  
By januson on 07-13-2008, 04:32 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Blu-Ray-> I use KlingerGoslin together with a volume based chart. In the attached screenshot there are 3 entrypoints, highlighted in green. A strong signal is when both the TRIX and KlingerGoslin is below the zeroline.

For some indicators I think a volumebased chart gives a much cleaner view, , but also the candlestick patterns are easier to read
Attached Images
File Type: png klingerexample.png (62.7 KB, 161 views)
Reply With Quote
  #57 (permalink)  
By metalhead on 07-16-2008, 09:22 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

Hi,

Has anyone been using these indicators successfully in their trading?

Please share your experience.

Thanks.
Reply With Quote
  #58 (permalink)  
By chipper on 07-18-2008, 11:52 AM
Re: Various Indicators (Squeeze,2FastMa's,etc)

I've been using the indicators (along with some others) in multiple time frames for confirmation...seems to work quite well...1000 tick chart for ES and confirm with 5 min/15 min...also like the Klinger...helps confirm...would not go against the "prevailing" volume sentiment.

Bill
Atlanta
Reply With Quote
  #59 (permalink)  
By Tresor on 07-18-2008, 05:12 PM
Re: Various Indicators (Squeeze,2FastMa's,etc)

hello Blu-Ray,

Would it be possible to add to this collection of indicators BR_Stochastic that would change its colour when entering into (i) oversold level and (ii) overbought level, just as it is the case with BR_CCi?

Thanks
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 12:40 AM.

 

 
 


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <