squeeze indicator

Quote from james16:

Can anyone direct me to a place where I can get the squeeze indicator without having to pay Hubert 1000 bucks, as he probably makes 200k a month from the trading room anyway, so it won't hurt his bank account !!
The squeeze indicator is for when th Bollinger bands cross over the Keltner channels...

Its just three indicators in one. It is Bollinger bands, Keltner channels and momentum indicator all watched at the same time. He only made that indicator so he can see his charts and they wont be covered up with the three indicators. They are all set at defaults.

You can watch those three indicators and they are exactly the same as Huberts one. Exactly.

John carter gives a detailed explanation of this indicator in his book, "mastering the trade" in chapter 10 page 201 to 203. It's pretty straight forward. It's not a secret indicator and they share it in their book. He says in his book at the end of the chapter, that you have his permission to program it yourself and copy it if you know how to program.

But if you are going to trade off this indicator alone, then you most likely will lose. He gives examples in his book where the indicator failed a few times. It's not 100%.
 
Quote from daytrademargin:

[But if you are going to trade off this indicator alone, then you most likely will lose. He gives examples in his book where the indicator failed a few times. It's not 100%. [/B]

:eek: Not 100%!:eek:
I am shocked.
 
Quote from slidertrader:

Quote from fh342:

is there a way to get this in esignal [/QUOTE


Yeah - I have esignal and would love it if someone had the scripts to put in the EFS



Here you go!



function preMain() {
setPriceStudy(false);
setStudyTitle("NickMBigMove");
setCursorLabelName("Signal", 0);
setDefaultBarFgColor(Color.red, 0);
setPlotType(PLOTTYPE_HISTOGRAM,0);
setHistogramBase(0);
setDefaultBarThickness(1,0);

var fp1 = new FunctionParameter("Length", FunctionParameter.NUMBER);
fp1.setLowerLimit(1);
fp1.setDefault(20); //Edit this value to set a new default

var fp2 = new FunctionParameter("Offset", FunctionParameter.NUMBER);
fp2.setDefault(0); //Edit this value to set a new default

var fp3 = new FunctionParameter("Source", FunctionParameter.STRING);
fp3.setName("Source");
fp3.addOption("Close");
fp3.addOption("High");
fp3.addOption("Low");
fp3.addOption("Open");
fp3.addOption("HL/2");
fp3.addOption("HLC/3");
fp3.addOption("OHLC/4");
fp3.setDefault("Close"); //Edit this value to set a new default

var fp4 = new FunctionParameter("ATRMultiple", FunctionParameter.NUMBER);
fp4.setName("Constant");
fp4.setLowerLimit(0.0001);
fp4.setDefault(1.5); //Edit this value to set a new default

var fp5 = new FunctionParameter("StdDev", FunctionParameter.NUMBER);
fp5.setLowerLimit(0);
fp5.setDefault(2); //Edit this value to set a new default
}

function main(Length,Offset,Source,ATRMultiple,StdDev) {

if (vMA == null) vMA = new MAStudy(Length, Offset, Source, MAStudy.SIMPLE);
if (vMA1 == null) vMA1 = new MAStudy(Length, Offset, "High", MAStudy.SIMPLE);
if (vMA2 == null) vMA2 = new MAStudy(Length, Offset, "Low", MAStudy.SIMPLE);
if (vBB == null) vBB = new BollingerStudy(Length, Source, StdDev);

if(vMA.getValue(MAStudy.MA)==null)
return;

var xATR = (vMA1.getValue(MAStudy.MA)-vMA2.getValue(MAStudy.MA));
vUpper = vMA.getValue(MAStudy.MA)+(xATR*ATRMultiple);
vLower = vMA.getValue(MAStudy.MA)-(xATR*ATRMultiple);

var vBBUpper = vBB.getValue(BollingerStudy.UPPER);
var vBBLower = vBB.getValue(BollingerStudy.LOWER);

if(vBBUpper <= vUpper && vBBLower >= vLower){
var vPlot = 1;
}

return vPlot;
}
 
would anyone like to be a hero and provide the code (or the link to the code) for the other carter/senters indicators in either esignal or tradestation? (scalper, bricks, TTM trend, autopivots) I can't find them on the tradestation site, at least not cross-referenced by those names. just like above, they are combinations of other indicators. I can give you the definitions if you want.
 
First of all thanks for all the excellent replies to my questions,
I downloaded Nicksbigmove squeeze indicators into my tradestation platform and all I get are long straight blue lines, So I went to the tradestation forums and saw that "nicksbigmove" has helped hundreds of people with there indicators, so the problem must be on my end, I have attached a snapshot of how my squeeze indicator looks right now, Yet again, thanks to every who has helped me...
 
Back
Top