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.

user237509837

Members
  • Content Count

    13
  • Joined

  • Last visited

Personal Information

  • First Name
    TradersLaboratory.com
  • Last Name
    User
  • Country
    Germany

Trading Information

  • Vendor
    No
  1. This guy charges $500 for this?
  2. Does anyone have the 3 setups that PBF provides when you but the Squeeze?
  3. Is this the same indicator sold by TTM known as Delta "D" ?
  4. I have compared this indicator with the one currently being sold by PBF and they are quite different, especially the dotted line bar which is faster with PBF's.
  5. Does anyone have the 3 setups that go along with the indicator when purchased from PBF?
  6. I know how to use it. The ELD is installed correctly, but the indicator is not working. As I said, the charts have been reduced to a horizontal line. Likewise with the indicator.
  7. I'm having no luck with this modified version. It wipes out my screen causing the squeeze and charts turn into horizontal lines. Any ideas?
  8. Really? Post the ELD or the link to download it, So far, no one has done it. You be the first. Oh, but you were they guy who sent me a PM saying that I had to pay my trading dues and figure it out myself. Nice guy.:thumbs down:
  9. There is no ELD there, only the code that I posted here (which I got from that link). Again, I'd be much obliged if someone who has experience with TS create the ELD and share it with the community. Thanks in advance.
  10. Please post the link from the site with the ELD.
  11. It's not the same as written by the orignal author. In addition, I am a new TS user and totally illiterate when it comes to anything beyond point-n-click; hence my request for the ELD from you of you kind souls who knows what they're doing.
  12. Can one of you coders create an ELD. Special thanks to Barry taylor for providing this. Better Volume Indicator Inputs: LowVol(True), ClimaxUp(True), ClimaxDown(True), Churn(True), ClimaxChurn(True), Color(Cyan), LowVolColor(Yellow), ClimaxUpColor(Red), ClimaxDownColor(White), ChurnColor(Green), ClimaxChurnColor(Magenta), AvgColor(Red); Variables: BarColor(Cyan), Lookback(20); BarColor = Color; If BarType > 1 then begin Value1 = V; Value2 = V*Range; If Range <> 0 then Value3 = V/Range; Condition1 = Value1 = Lowest(Value1,Lookback); Condition2 = Value2 = Highest(Value2,Lookback); Condition3 = Value3 = Lowest(Value3,Lookback); Condition4 = Value3 = Highest(Value3,Lookback); If LowVol and Condition1 then BarColor = LowVolColor; If ClimaxUp and Condition2 and C > O then BarColor = ClimaxUpColor; If ClimaxDown and (Condition2 or Condition3) and C < O then BarColor = ClimaxDownColor; If Churn and Condition4 then BarColor = ChurnColor; If ClimaxChurn and Condition4 and ((Condition2 and C > O) or ((Condition2 or Condition3) and C < O)) then BarColor = ClimaxChurnColor; End; If BarType <= 1 then begin Value1 = UpTicks+DownTicks; Value2 = UpTicks*Range; Value3 = (UpTicks-DownTicks)*Range; Value4 = DownTicks*Range; Value5 = (DownTicks-UpTicks)*Range; If Range <> 0 then begin Value6 = UpTicks/Range; Value7 = (UpTicks-DownTicks)/Range; Value8 = DownTicks/Range; Value9 = (DownTicks-UpTicks)/Range; Value10 = (UpTicks+DownTicks)/Range; End; Condition1 = Value1 = Lowest(Value1,Lookback); Condition2 = Value2 = Highest(Value2,Lookback); Condition3 = Value3 = Highest(Value3,Lookback); Condition4 = Value4 = Highest(Value4,Lookback); Condition5 = Value5 = Highest(Value5,Lookback); Condition6 = Value6 = Lowest(Value6,Lookback); Condition7 = Value7 = Lowest(Value7,Lookback); Condition8 = Value8 = Lowest(Value8,Lookback); Condition9 = Value9 = Lowest(Value9,Lookback); Condition10 = Value10 = Highest(Value10,Lookback); If LowVol and Condition1 then BarColor = LowVolColor; If ClimaxUp and (Condition2 or Condition3 or Condition8 or Condition9) and C > O then BarColor = ClimaxUpColor; If ClimaxDown and (Condition4 or Condition5 or Condition6 or Condition7) and C < O then BarColor = ClimaxDownColor; If Churn and Condition10 then BarColor = ChurnColor; If ClimaxChurn and Condition10 and (((Condition2 or Condition3 or Condition8 or Condition9) and C > O) or ((Condition4 or Condition5 or Condition6 or Condition7) and C < O)) then BarColor = ClimaxChurnColor; End; Plot1(Value1,"Volume",BarColor); Plot2(Average(Value1,100),"Avg",AvgColor); {************************** Change Log: **************************} {23 November 2007 - Added LowChurn colored volume bars } {19 April 2008 - Got rid of LowChurn and replaced with ClimaxDown } {19 April 2008 - Added open & close conditions with ClimaxUp and ClimaxDown } {19 April 2008 - Added different calculations for tick/intra-day charts } Better Volume PaintBar Inputs: LowVol(True), ClimaxUp(True), ClimaxDown(True), Churn(True), ClimaxChurn(True), LowVolColor(Yellow), ClimaxUpColor(Red), ClimaxDownColor(White), ChurnColor(Blue), ClimaxChurnColor(Magenta), Lookback(20); Variables: BarColor(Green); BarColor = Green; If BarType > 1 then begin Value1 = V; Value2 = V*Range; If Range <> 0 then Value3 = V/Range; Condition1 = Value1 = Lowest(Value1,Lookback); Condition2 = Value2 = Highest(Value2,Lookback); Condition3 = Value3 = Lowest(Value3,Lookback); Condition4 = Value3 = Highest(Value3,Lookback); If LowVol and Condition1 then BarColor = LowVolColor; If ClimaxUp and Condition2 and C > O then BarColor = ClimaxUpColor; If ClimaxDown and (Condition2 or Condition3) and C < O then BarColor = ClimaxDownColor; If Churn and Condition4 then BarColor = ChurnColor; If ClimaxChurn and Condition4 and ((Condition2 and C > O) or ((Condition2 or Condition3) and C < O)) then BarColor = ClimaxChurnColor; End; If BarType <= 1 then begin Value1 = UpTicks+DownTicks; Value2 = UpTicks*Range; Value3 = (UpTicks-DownTicks)*Range; Value4 = DownTicks*Range; Value5 = (DownTicks-UpTicks)*Range; If Range <> 0 then begin Value6 = UpTicks/Range; Value7 = (UpTicks-DownTicks)/Range; Value8 = DownTicks/Range; Value9 = (DownTicks-UpTicks)/Range; Value10 = (UpTicks+DownTicks)/Range; End; Condition1 = Value1 = Lowest(Value1,Lookback); Condition2 = Value2 = Highest(Value2,Lookback); Condition3 = Value3 = Highest(Value3,Lookback); Condition4 = Value4 = Highest(Value4,Lookback); Condition5 = Value5 = Highest(Value5,Lookback); Condition6 = Value6 = Lowest(Value6,Lookback); Condition7 = Value7 = Lowest(Value7,Lookback); Condition8 = Value8 = Lowest(Value8,Lookback); Condition9 = Value9 = Lowest(Value9,Lookback); Condition10 = Value10 = Highest(Value10,Lookback); If LowVol and Condition1 then BarColor = LowVolColor; If ClimaxUp and (Condition2 or Condition3 or Condition8 or Condition9) and C > O then BarColor = ClimaxUpColor; If ClimaxDown and (Condition4 or Condition5 or Condition6 or Condition7) and C < O then BarColor = ClimaxDownColor; If Churn and Condition10 then BarColor = ChurnColor; If ClimaxChurn and Condition10 and (((Condition2 or Condition3 or Condition8 or Condition9) and C > O) or ((Condition4 or Condition5 or Condition6 or Condition7) and C < O)) then BarColor = ClimaxChurnColor; End; If BarColor <> Green then PlotPaintBar(H,L,O,C,"BetterVol",BarColor);
  13. Zero Lag Exponential Moving Average (ZLEMA) is part of SierraChart. Problem: I use TS and I don't have a clue on programming (EasyLanguage is the opposite for me). I think this is better than HA because it doesn't overshoot. Anyway, here is the formula and if any of you smart guys who use TS can create the ELD, we can all benefit. If it can have the same color code as HA (green up/red down) that would be really helpful EMA = K * ( 2 * PRICE - PRICE.X) + (1 - K) * EMA.1 where... K = 2 / (n + 1) n = Period x = lag = (n - 1) / 2 http://www.geocities.com/user42_kevin/chart/manual/Zero_002dLag-Exponential-Moving-Average.html
×
×
  • Create New...

Important Information

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