|
|
|
|
|||||||
| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() |
|
|
LinkBack | Release Tools | Display Modes |
|
|
|||||
|
|||||
|
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. |
| The Following 2 Users Say Thank You to Blu-Ray For This Useful Post: | ||
|
By
moneymarkets
on
04-15-2008, 09:17 PM
|
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
btrader2 ,Did you get the code of the br_squeeze to plot in MC 3.0, if so would you post the PLEditor.Document for it?
Thanks |
|
By
Blu-Ray
on
04-16-2008, 03:56 AM
|
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
My Apologies, it requires the jtHMA function which I forgot to post the code, so here it is:
{jtHMA - Hull Moving Average Function} {Author: Atavachron} {May 2005} Inputs: price(NumericSeries), length(NumericSimple); Vars: halvedLength(0), sqrRootLength(0); { Original equation is: --------------------- waverage(2*waverage(close ,period/2)-waverage(close,period), SquareRoot(Period) Implementation below is more efficient with lengthy Weighted Moving Averages. In addition, the length needs to be converted to an integer value after it is halved and its square root is obtained in order for this to work with Weighted Moving Averaging } if ((ceiling(length / 2) - (length / 2)) <= 0.5) then halvedLength = ceiling(length / 2) else halvedLength = floor(length / 2); if ((ceiling(SquareRoot(leng th)) - SquareRoot(length)) <= 0.5) then sqrRootLength = ceiling(SquareRoot(length )) else sqrRootLength = floor(SquareRoot(length)) ; Value1 = 2 * WAverage(price, halvedLength); Value2 = WAverage(price, length); Value3 = WAverage((Value1 - Value2), sqrRootLength); jtHMA = Value3; Hope this helps Blu-Ray |
|
By
Blu-Ray
on
04-16-2008, 08:00 AM
|
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
Here's a new one that's just been added:
BR_Trend_Bars ![]() and the code : ( You'll need the jtHMA function as posted above ) Inputs: Price(Close), Length1(13), Length2(34), Length3(89), UpLevel(35), MidLevel(0), LwrLevel(-35); Value1 = jthma(Price,Length1); Value2 = jthma(Price,Length2); Value3 = jthma(Price,Length3); if Value1 > Value1[1] then Plot1(UpLevel,"UpLevel", Green) else Plot1(UpLevel,"UpLevel", Red); if Value2 > Value2[1] then Plot2(MidLevel,"MidLevel" ,Green) else Plot2(MidLevel,"MidLevel" ,Red); if Value3 > Value3[1] then Plot3(LwrLevel,"LwrLevel" ,Green) else Plot3(LwrLevel,"LwrLevel" ,Red); Hope this helps Blu-Ray |
|
|
|
By
Blu-Ray
on
04-16-2008, 08:30 AM
|
|||||||||||||||
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
If I'm understanding your last question correctly, the three lines are all different lengths, top one being 13hma, middle 21hma and the bottom one a 89hma. Hope this helps Blu-Ray |
|||||||||||||||
|
By
whisper01Barry
on
04-17-2008, 12:44 AM
|
|
Re: Various Indicators (Squeeze,2FastMa's,etc)
Cool Beans!!!
![]() Thanks Barry |
![]() |
| Currently Active Users Viewing This Release: 1 (0 members and 1 guests) | |
| Release Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Release | Release Starter | Category | Comments | Last Post |
| BB Squeeze Replica For Tradestation | Soultrader | Trading Indicators | 33 | 08-28-2008 08:47 PM |
| 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 |
|
|
|