Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

simterann22

Gapless Squeeze

Recommended Posts

Great indicators simterann22. Is there any way to code a gapless RSI inside of gapless Bollinger Bands so they're in the same code and both plot on the right axis? I can scale them in the same panel on my charts, but they're skewed and aren't correctly plotting because I have to plot 1 or the other as no axis if they're together. If I put them together and try to plot them both on the right axis, it just shows a line across the page. Guess they need to be put in the same code originally to plot together accurately. Thanks again for your terrific indicators and help.

 

Curtis

Share this post


Link to post
Share on other sites

I assume you are trying to plot the RSI BBs, not the actual price data BBs? If so, yes, you need to code them together as the BBs will be plotted relative to the RSI value not to price data.

 

Try this code:

 

Inputs:
	Price(Close),
	RSILength(14),
	Oversold(30),
	Overbought(70),
	SDev(1.5),
	AvgLength(14);
Vars:
	MyRSI(0),
	RSIBB(0),
	RSIAvg(0),
	BBsdev(0),
	Upper_Band(0),
	Lower_Band(0);

	// gapless day transitions - John McCormick May 2008

Vars:
RelO(0),		// Relative Open
RelH(0),		// Relative High
RelL(0),		// Relative low
RelC(0),		// Relative Close
gap(0),			// the opening gap (modified by the gap coefficient)
GapCoef(1.0),	// Gap Coefficient
Accum(0);		// The sum of all the daily gaps

if currentsession(0)<>currentsession(0)[1] or date<>date[1] then 
 begin
gap=GapCoef*(O-C[1]);
Accum=Accum+gap;   
 end;

if BarType<=0 or BarInterval<60 then  //Valid only for Tick or Intraday	under 60min 

begin

	RelO	=	O-Accum;
	RelC	=	C-Accum;
	RelH	=	H-Accum;
	RelL	=	L-Accum;

	end

	else begin

	RelO	=	O;
	RelC	=	C;
	RelH	=	H;
	RelL	=	L;

end;

// Gapless - end

Var: GL_Price(0);

GL_price = RelC;
If Price=open then GL_price = RelO;
If Price=high then GL_price = RelH;
If Price=low then GL_price = RelL;

MyRSI=RSI(GL_Price,RSILength);
RSIAvg=Xaverage(MyRSI,AvgLength);
BBsdev=StandardDev(MyRSI,AvgLength,1);

Upper_Band = ( RSIAvg + Sdev * BBsdev );
Lower_Band = ( RSIAvg - Sdev * BBsdev );

Plot1(MyRSI,"MyRSI");
Plot2(RSIAvg,"RSIAvg");
Plot3(Upper_Band,"UBand");
Plot4(Lower_Band,"LBand");
Plot5(Oversold,"Oversold");
Plot6(Overbought,"Overbought");

5aa70f019e38c_@RSIBBGapless.thumb.jpg.10ee79ed326c369922801cd7784ed102.jpg

@RSI&BB Gapless.txt

Share this post


Link to post
Share on other sites

Hi simterann22!

I tried to realize a RadarScreen indicator of the Gapless Squeeze in order to receive a "Long" "Short" and "Flat" signals.. but I'm a really beginner. Could you help me? Thanks, kmarinelli.

Share this post


Link to post
Share on other sites
Hi simterann22!

I tried to realize a RadarScreen indicator of the Gapless Squeeze in order to receive a "Long" "Short" and "Flat" signals.. but I'm a really beginner. Could you help me? Thanks, kmarinelli.

 

Kmarinelli, first of all I am less than 3 months old in EL coding. I have simply learned by studying other coder's works and reading the reserved word and function descriptions in the help menu. The best way to learn is by observation and a desire to understand how code works. So my suggestion is to read the code below and also read the free TS pdf files on their website on EL.

 

Here is a basic Squeeze RadarScreen without the 'bells and whistles' I personally use.....but this is just as good. I have basically modified Blu-Ray's BR_Squeeze RadarScreen to suit this squeeze. I have not allowed for the Gaussian or Countertrend options as I do not really use them....you're on your own if you want to modify it. Why not try? :)

 

You can change the EL code to say "flat' in place of 'squeeze' if you like, just simply replace the text as such in the code.

 

Make sure you format the indicator...... General>Load additional data for accumulative calculations (say 100)....and Style>ago>number> reduce decimal to zero.

This version should work okay, though I have not fully tested it.

 

 

Enjoy.

@SK_SQUEEZE RADAR SCREEN.ELD

Gapless Squeeze RadarScreen.txt

Share this post


Link to post
Share on other sites

Gapless squeeze is a great addition to the indicator.

 

Signal line appears to operate different from the version I have been using (pbf). Can anyone elaborate on the application this particular signal line is based on... it appears to go red in consolidations/transitions.

 

Thanks,

 

snowbird

Share this post


Link to post
Share on other sites

That's correct. As PBF say on their website theirs isn't really like the traditional squeeze ie. the BB Squeeze, it just looks similar. As for the BB Squeeze, the 'Squeeze' happens when the Bollinger Bands enter into the Keltner Channel....signalling a quiet period....thus the red signal. That's the time to get ready to see a momentum breakout ie. BB breakout. If you change BBSqueeze to "False" then that should give you a PBF-like Gaussian 'squeeze' as per the original screen shot.

Share this post


Link to post
Share on other sites

Ahh... that it does! excellent explanation.

 

Another thing I noticed as I've looked at the differences... it appears that with the BB momentum BO signal (BB SQ = true) alert, that if the close of the BO bar is outside the BB/Keltner channel, it often pays to wait for a retrace back within the channel towards the Keltner center line before buying/selling the BO in the direction of the squeeze. This will often get you in at a closer entry to what the PBF alert signal would have, but with many fewer false signals/whipsaws.

 

snowbird

Share this post


Link to post
Share on other sites

Thanks Snowbird for the input. I do not have the PBF indicators. Though I am impressed with their videos. I didn't see a lot of difference between theirs and the 'freeware' indicators on this site (Blu-Ray's) and the TradeStation forums. I get tired of paying good money for indicators that are just tarted up versions. eg. I believe the iTunnel is just a Keltner Channel (set at 1?). However, I've read on PBFs site that they show you, once you buy their indicators, how to use them effectively......That, you don't always get with a free indicator :( . As for the squeeze tip....thanks..... that does make sense. With a squeeze alert it's easy to get sucked in right away and chase the market.

 

Cheers.

Share this post


Link to post
Share on other sites

fyi to all......I tested the "true" & "false" inputs.....found the "false" input to be a better read in the turns; also changes the inputs to "green/dark green", from blue/dark blue....to see betta; also change the histogram to a "line"= easier for me to see in the turns & the zl cross too. Use it on a 116 tick chart (my trade-entry/mgm chart), with a 305tk chart anchor, & a 89tk chart lead chart to see the beginning of the turns. Found it to be very usefull with my MACD/Stoch SLow in level below it for day trading the ES?NQ emini's. Hope that info is of use.... :)

 

ajax

Share this post


Link to post
Share on other sites

simterann22, Thanks for your brilliant works

 

could you please make gapless Hull moving average ?

 

belows are function and indicator

 

I attached gapless addin but it seems not work

 

Type : Function, Name : jtHMA

{jtHMA - Hull Moving Average Function}
{Author: Atavachron}
{May 2005}

Inputs: price(NumericSeries), length(NumericSimple);
Vars: halvedLength(0), sqrRootLength(0);

if ((ceiling(length / 2) - (length / 2)) <= 0.5) then
halvedLength = ceiling(length / 2)
else
halvedLength = floor(length / 2);

if ((ceiling(SquareRoot(length)) - 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;

Type : Indicator, Name : jtHMA

{jtHMA - Hull Moving Average Indicator}
{Author: Atavachron}
{May 2005}

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

Edited by duhhhh

Share this post


Link to post
Share on other sites

Hi duhhh,

 

I do not use Tradestation anymore so I have no way of testing it for you. However, the best thing you can do is download the EMA or Bollinger Band ELDs and transpose the Gapless code to the Hull.

*Just remember that whenever there is 'Price' in the code this needs to be changed to the gapless price.

*Also remember that anything plotted on the 1st pane eg. EMA, BBs Keltner etc. will need to have 'accum' added to the code.

* If there is a Function involved that includes 'Price' (as with the JtHMA) then you will need to place the gapless code in the function as well.....that's usually the reason it does not work!

Just study the code and don't give up.....that's the way I learned to code these extra indicators! Post your code here and either I or someone else can take a look at it. You should also post your errors if you have any. Hope it helps mate.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Date: 22nd November 2024.   BTC flirts with $100K, Stocks higher, Eurozone PMI signals recession risk.   Asia & European Sessions:   Geopolitical risks are back in the spotlight on fears of escalation in the Ukraine-Russia after Russia reportedly used a new ICBM to retaliate against Ukraine’s use of US and UK made missiles to attack inside Russia. The markets continue to assess the election results as President-elect Trump fills in his cabinet choices, with the key Treasury Secretary spot still open. The Fed’s rate path continues to be debated with a -25 bp December cut seen as 50-50. Earnings season is coming to an end after mixed reports, though AI remains a major driver. Profit taking and rebalancing into year-end are adding to gyrations too. Wall Street rallied, led by the Dow’s 1.06% broadbased pop. The S&P500 advanced 0.53% and the NASDAQ inched up 0.03%. Asian stocks rose after  Nvidia’s rally. Nikkei added 1% to 38,415.32 after the Tokyo inflation data slowed to 2.3% in October from 2.5% in the prior month, reaching its lowest level since January. The rally was also supported by chip-related stocks tracked Nvidia. Overnight-indexed swaps indicate that it’s certain the Reserve Bank of New Zealand will cut its policy rate by 50 basis points on Nov. 27, with a 22% chance of a 75 basis points reduction. European stocks futures climbed even though German Q3 GDP growth revised down to 0.1% q/q from the 0.2% q/q reported initially. Cryptocurrency market has gained approximately $1 trillion since Trump’s victory in the Nov. 5 election. Recent announcement for the SEC boosted cryptos. Chair Gary Gensler will step down on January 20, the day Trump is set to be inaugurated. Gensler has pushed for more protections for crypto investors. MicroStrategy Inc.’s plans to accelerate purchases of the token, and the debut of options on US Bitcoin ETFs also support this rally. Trump’s transition team has begun discussions on the possibility of creating a new White House position focused on digital asset policy.     Financial Markets Performance: The US Dollar recovered overnight and closed at 107.00. Bitcoin currently at 99,300,  flirting with a run toward the 100,000 level. The EURUSD drifts below 1.05, the GBPUSD dips to June’s bottom at 1.2570, while USDJPY rebounded to 154.94. The AUDNZD spiked to 2-year highs amid speculation the RBNZ will cut the official cash rate by more than 50 bps next week. Oil surged 2.12% to $70.46. Gold spiked to 2,697 after escalation alerts between Russia and Ukraine. Heightened geopolitical tensions drove investors toward safe-haven assets. Gold has surged by 30% this year. Haven demand balanced out the pressure from a strong USD following mixed US labor data. Silver rose 0.9% to 31.38, while palladium increased by 0.9% to 1,040.85 per ounce. Platinum remained unchanged. Always trade with strict risk management. Your capital is the single most important aspect of your trading business.   Please note that times displayed based on local time zone and are from time of writing this report.   Click HERE to access the full HFM Economic calendar.   Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news. Andria Pichidi HFMarkets Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in FX and CFDs products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
    • A few trending stocks at support BAM MNKD RBBN at https://stockconsultant.com/?MNKD
    • BMBL Bumble stock watch, pull back to 7.94 support area with high trade quality at https://stockconsultant.com/?BMBL
    • LUMN Lumen Technologies stock watch, pull back to 7.43 support area with bullish indicators at https://stockconsultant.com/?LUMN
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.