tradingwithanedge

Thank you.

The first thing to know on indicators are which ones have senior rank and that we also use a 21 minute chart where the bands work very well. The bands help with possible turn points and/or a change in Support/Resistance so that one can take off partial trades if he wishes. So the guy saying it is a Keltner band (which it is 100% not) and not based on any Market Profile. Actually someone who has traded to 20 years would not believe it. Personally, most common indicator setups that people use don't work, but with the correct setup you can stay on the correct side of the market. I have tested over 300 indicators on Tradestation and eSignal at every input on every tyype of chart and timeframe.

Market Profile has become popular because most traders will never figure out a great setup for indicators (because they are using all of the stuff that has been out there for years). I think most people will agree with this.

Market Profile has a different learning curve. Maybe some Market Profilers can comment on how long is the learning curve from this forum.

So, How long is the learning curve for Market Profile?

As I said before: Maybe someone can comment on Market Profiling if you are interested in learning from them. (the reason I posted was to inform people that they can use MP if they like it).

I might develope and add on something in the future when I have time to show buying and selling orders.

My other question to any Market Profiler's: Is even if you can see all of the orders coming through, aren't they still after the fact. Can't the market can move up to a high 2 points and turn down faster than a person can re-act on a trade?

How has Market Profile helped your trading? If it has helped you, then that is fantastic and well done for your hard work.
 
Last edited:
How has Market Profile helped your trading? If it has helped you said:
Use yesterdays value area high and low as support and resistance.

That's not copyrighted.
 
Tried using market profile, did`nt really do anything for me but i know people who do use it with much success.
 
can you offer free trial brilliant?
thanks

I don't do emails in the forum. You have to send your info to me from the last page on the website.

I don't do email blasting or "trail sales pitches" like a lot of other rooms do.

How is your market Profile going Sillykiddo?

There is a video up of this morning if you want to review it and send me an email.

Thank you.
 
If Some worked so well. Made money 90% of the time wouldn't you offer a free trial cause you know people would be so hooked they would throw many at you for your product!. If it didn't work you would kind of take a 'I dont really care to make money attitude" All the robot company's are giving free trails left and right! Do they work? you'll have to decide. But at least ya wont lose your robot fee to find out. =]
 
I would like to revive this thread.
It has been a while since the last post...has anyone received more info.
 
Code for Think or Swim.....NOT exactly the twe ONE BUT PRETTY CLOSE:



#############

declare weak_volume_dependency;
input displace = 0;
input displace2 = 0;
input displace3 = 0;
input factor = 1.75;
input factor2 = 2.5;
input factor3 = 4;
input length = 45;
input price = close;
def shift = factor * AvgTrueRange(high, close, low, length);
def shift2 = factor2 * AvgTrueRange(high, close, low, length);
def shift3 = factor3 * AvgTrueRange(high, close, low, length);
def average = ExpAverage(price, length);
plot Avg = average[-displace];
Avg.SetDefaultColor(GetColor(7));
plot Upper_Band = average[-displace] + shift[-displace];
Upper_Band.SetDefaultColor(GetColor(7));
plot Lower_Band = average[-displace] - shift[-displace];
Lower_Band.SetDefaultColor(GetColor(7));
plot Upper_Band2 = average[-displace] + shift2[-displace];
Upper_Band2.SetDefaultColor(GetColor(7));
plot Lower_Band2 = average[-displace] - shift2[-displace];
Lower_Band2.SetDefaultColor(GetColor(7));
plot Upper_Band3 = average[-displace] + shift3[-displace];
Upper_Band3.SetDefaultColor(GetColor(7));
plot Lower_Band3 = average[-displace] - shift3[-displace];
Lower_Band3.SetDefaultColor(GetColor(7));
 
Last edited:
Code for Think or Swim.....NOT exactly the twe ONE BUT PRETTY CLOSE:



#############
declare lower;
declare all_for_one;

input over_bought = 80;
input over_sold = 20;
input KPeriod = 10;
input DPeriod = 10;
input priceH = high;
input priceL = low;
input priceC = close;
input smoothingType = {Default SMA, EMA};

plot SlowK = reference StochasticFull(over_bought,over_sold,KPeriod,DPeriod,priceH,priceL,priceC,3,smoothingType).FullK;
SlowK.setDefaultColor(GetColor(5));

plot SlowD = reference StochasticFull(over_bought,over_sold,KPeriod,DPeriod,priceH,priceL,priceC,3,smoothingType).FullD;
SlowD.setDefaultColor(GetColor(0));

plot OverBought = over_bought;
OverBought.SetDefaultColor(GetColor(1));

plot OverSold = over_sold;
OverSold.SetDefaultColor(GetColor(1));
http://www.trade2win.com/boards/images/icons_new/icon5.gif
Can you explain, please, how do you relate this to TWE? He is using lines and bands in price regions, not stochastics???
Thanks
 
Thank you, that's OK. i will have look at this. Do you know if EL compiler would compile this code. Is TOS equivalent to EL?
 
Code for Think or Swim.....NOT exactly the twe ONE BUT PRETTY CLOSE:



#############

declare weak_volume_dependency;
input displace = 0;
input displace2 = 0;
input displace3 = 0;
input factor = 1.75;
input factor2 = 2.5;
input factor3 = 4;
input length = 45;
input price = close;
def shift = factor * AvgTrueRange(high, close, low, length);
def shift2 = factor2 * AvgTrueRange(high, close, low, length);
def shift3 = factor3 * AvgTrueRange(high, close, low, length);
def average = ExpAverage(price, length);
plot Avg = average[-displace];
Avg.SetDefaultColor(GetColor(7));
plot Upper_Band = average[-displace] + shift[-displace];
Upper_Band.SetDefaultColor(GetColor(7));
plot Lower_Band = average[-displace] - shift[-displace];
Lower_Band.SetDefaultColor(GetColor(7));
plot Upper_Band2 = average[-displace] + shift2[-displace];
Upper_Band2.SetDefaultColor(GetColor(7));
plot Lower_Band2 = average[-displace] - shift2[-displace];
Lower_Band2.SetDefaultColor(GetColor(7));
plot Upper_Band3 = average[-displace] + shift3[-displace];
Upper_Band3.SetDefaultColor(GetColor(7));
plot Lower_Band3 = average[-displace] - shift3[-displace];
Lower_Band3.SetDefaultColor(GetColor(7));

What average do you use, exp or simple for AvrTrue range??
thanks
 
Top