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.

Trendup_

Members
  • Content Count

    138
  • Joined

  • Last visited

Posts posted by Trendup_


  1. i've used oec before. i can help. from platform go to view menu then custom indicators then indicator store. scroll down until you find heikin ashi. select it and install (top left icon in indicator store window). once you install it then bring up a chart (any time frame) right clik in a blank area of chart..select indicators..then imported..then heikin ashi. It will then apply heikin ashi to the chart. you have to do this later process (starting from right clik in blank area) for each chart you use. hope this helps. it is a free indicator so you don't have to buy it from store.

     

    Thanks, I had a look at it, it is not plotting the Heikin Ashi candles, it just color them. I have the same result with this coding:

    {Heikin Ashi PaintBarStudy (not an indicator)

    Heikin-Ashi technique for visualization of trend -

    Correctly paints bars with no candlesticks if you hide regular bar style as follows:

    Format Symbol, style tab, select Dot on Close, color to white or black }

     

    inputs: UpColor(white),DnColor(black);

    vars: haClose(0),haOpen(0),haHigh(0),haLow(0), color(0);

     

    if BarNumber = 1 then begin

    haOpen = Open;

    haClose = (Open+High+Low+Close)/4;

    haHigh = MaxList( high, haOpen, haClose);

    haLow = MinList( low, haOpen,haClose);

    end;

     

    if BarNumber > 1 then begin

    haClose = (Open+High+Low+Close)/4; ////average bar price

    haOpen = (haOpen [1] + haClose [1])/2 ; ////avg open/close 1 bar ago

    haHigh = MaxList(High, haOpen, haClose) ; ////highest of high,open,close

    haLow = MinList(Low, haOpen, haClose) ; //// lowest of low, open, close

     

    if haClose > haOpen then color = UpColor

    else color = DnColor;

     

    plotPB(haOpen,haClose,"heikin-ashi",color);

    SetPlotWidth(1,1);

    SetPlotColor(1,color);

    end;

    Without HA study

    attachment.php?attachmentid=33056&stc=1&d=1353746336

     

     

    With HA Study

    33057d1353746336-heikin-ashi-oec-ha1.png

    noHA1.thumb.PNG.cd1c37012a149313d780702e6e9774e9.PNG

    HA1.thumb.PNG.7182ab097c44ffa2b147e0cd29739803.PNG


  2. Minute charts seem to be ok but tick, range and volume are affected due to bad data during the weekend, Could be cause by the daylight saving......

    As a result indicators are skewed and pivot points in wrong places. So watch out.

     

    attachment.php?attachmentid=27882&stc=1&d=1331521897

    tickChart11Mar2012.thumb.PNG.dc7e35914345a52df4d3e6f3bbb4aef5.PNG


  3. ESM2 charts are showing activities at 19:00 on Friday down to 1339.50 ????

     

    does anyone knows what is going on?

     

     

    (It is about OEC data for ESM2 I'm mentioning) if you have similar aberration on your chart I'd like to hear from you.


  4. I’m using a HP Pavilion DV6/i7 Core/4 Gb RAM/15.6”LED monitor. No faults so far.

    HP Pavilion dv6-2119TX Notebook - Notebook Computers - HP Compaq - 16 inches - Landmark Computers

    I have a 24” monitor connected to the HDMI port, and a 19” monitor through a docking station (Toshiba dynadock).

    Toshiba dynadock® V USB Docking Station with Video from Toshiba

    Once the HDMI, Docking USB and power supply is disconnected the laptop is free to go.

    My external drive, mouse, third monitor and speakers stay connected to the docking station.

    The drawback having a powerful system is a short time on the supplied battery ( 1.5 hour) so if you plan to go mobile a bigger battery is required.

    .


  5. I guess the question to be answered is do I have enough time to correct all the useless urban myth that you two have posted?

    and do I care? I would say the answer is no...So my comment is simply, between the misinformation, the bullshit attitude, and the useless crap....I wouldn't know where to start....

    I will be ignoring you completely....I would suggest others do the same...

     

     

    Just to let you know that I enjoy your posts, keep them coming .

    Cheers


  6. Just following on the post I made about how volume divergences are useful, I made a video of a trade that I took yesterday off the 1181 reistance level in ES. The market traded up to the level on a divergence, then one just needed to read the order flow there to pin point the entry. The video can be viewed here:

    You'll need to watch it in full screen to see the detail. I should of recorded it in slightly higher quality, which I'll do for my next video. Also what happens at the 1181 resistance level is a great example of a post on the blog called cat whiskers.

     

    Thanks for the videos, can’t hear any voice, it will be valuable to hear your comments.

×
×
  • Create New...

Important Information

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