Page 18 of 34 FirstFirst ... 8 16 17 18 19 20 28 ... LastLast
Results 171 to 180 of 338
Like Tree79Likes

AllAverages

This is a discussion on AllAverages within the Trading tools forums, part of the Trading Forum category; Hey Igorad, Originally Posted by igorad Hi, Please check out the updated AllAverages indicator with the new set of 32 ...

      
   
  1. #171
    Junior Member
    Join Date
    Aug 2016
    Location
    Adelaide, South Australia
    Posts
    1
    Hey Igorad,

    Quote Originally Posted by igorad View Post
    Hi,

    Please check out the updated AllAverages indicator with the new set of 32 MAs(including eVWMA mod).

    Regards,
    Igor
    That's a sweet collection of MA's there

    I threw it on an H1 chart, and left the TimeFrame on "current", and found that the shift wasn't working... Changed the TimeFrame to "1 Hour" and the shift worked perfectly.

    I do a bit of CPH (Copy, Paste, Hammer the damn thing 'til it does what I want), so had a look and changed...

    Code:
       SetIndexBuffer(0,allAvg); SetIndexStyle(0,DRAW_LINE); SetIndexShift(0,MA_Shift*TimeFrame/Period());
       SetIndexBuffer(1,   Up1); SetIndexStyle(1,DRAW_LINE); SetIndexShift(1,MA_Shift*TimeFrame/Period());
       SetIndexBuffer(2,   Up2); SetIndexStyle(2,DRAW_LINE); SetIndexShift(2,MA_Shift*TimeFrame/Period());
    ...to...

    Code:
       SetIndexBuffer(0,allAvg); SetIndexStyle(0,DRAW_LINE); SetIndexShift(0,MA_Shift*timeframe/Period());
       SetIndexBuffer(1,   Up1); SetIndexStyle(1,DRAW_LINE); SetIndexShift(1,MA_Shift*timeframe/Period());
       SetIndexBuffer(2,   Up2); SetIndexStyle(2,DRAW_LINE); SetIndexShift(2,MA_Shift*timeframe/Period());
    ...and now the shift works correctly with all MA's when TimeFrame is set to "current".

    Have fun!
    Radar =8^)

  2. #172
    Junior Member
    Join Date
    Jul 2016
    Posts
    3
    Hi igorad

    Thanks for providing the update, will try it.

    Appreciated

    ServerUang

  3. #173
    igorad
    Guest
    Quote Originally Posted by Radar View Post
    Hey Igorad,

    That's a sweet collection of MA's there

    I threw it on an H1 chart, and left the TimeFrame on "current", and found that the shift wasn't working... Changed the TimeFrame to "1 Hour" and the shift worked perfectly.

    I do a bit of CPH (Copy, Paste, Hammer the damn thing 'til it does what I want), so had a look and changed...

    Code:
       SetIndexBuffer(0,allAvg); SetIndexStyle(0,DRAW_LINE); SetIndexShift(0,MA_Shift*TimeFrame/Period());
       SetIndexBuffer(1,   Up1); SetIndexStyle(1,DRAW_LINE); SetIndexShift(1,MA_Shift*TimeFrame/Period());
       SetIndexBuffer(2,   Up2); SetIndexStyle(2,DRAW_LINE); SetIndexShift(2,MA_Shift*TimeFrame/Period());
    ...to...

    Code:
       SetIndexBuffer(0,allAvg); SetIndexStyle(0,DRAW_LINE); SetIndexShift(0,MA_Shift*timeframe/Period());
       SetIndexBuffer(1,   Up1); SetIndexStyle(1,DRAW_LINE); SetIndexShift(1,MA_Shift*timeframe/Period());
       SetIndexBuffer(2,   Up2); SetIndexStyle(2,DRAW_LINE); SetIndexShift(2,MA_Shift*timeframe/Period());
    ...and now the shift works correctly with all MA's when TimeFrame is set to "current".

    Have fun!
    Radar =8^)

    Hi Radar,

    You are right there is a minor bug. So this piece of the code should looks like:


    Code:
    SetIndexBuffer(0,allAvg); SetIndexStyle(0,DRAW_LINE); SetIndexShift(0,MA_Shift*timeframe/Period());
    SetIndexBuffer(1,   Up1); SetIndexStyle(1,DRAW_LINE); SetIndexShift(1,MA_Shift*timeframe/Period());
    SetIndexBuffer(2,   Up2); SetIndexStyle(2,DRAW_LINE); SetIndexShift(2,MA_Shift*timeframe/Period());


    Regards,
    Igor

  4. #174
    Senior Member
    Join Date
    Jul 2014
    Posts
    779
    Hi Shg,

    Please share the tpl and list Indicators you used.

    Thanks in adamnc
    Quote Originally Posted by shg View Post
    Hi Igor & ND,

    Can you check attached graphs? Its really interesting...It has the band squeeze and then it expand...Very very interesting...i dont know exact technical word but i would say that it just break the band and it expand...so as soon as it squeeze there will be a good move and good signal...

    Attachment 18811

    Attachment 18812

    Attachment 18813

    Attachment 18814

    Attachment 18815

    Good work...thanks

    regards

  5. #175
    Member
    Join Date
    Dec 2015
    Posts
    32

    Can somebody help me improve the volume indicator like the one in the picture, please ?

    AllAverages-screen_nzdjpy_d1_18-54-57.gif
    I want to have the volume indicator at the bottom of the chart window like the one in the picture (the same place as the volume in MT4).
    Can somebody who know help me change the indicator I attached to be the same as in the picture, please ?

    Or somebody whot knows just tell me how to change the code & I'll change it myself.
    Normally the codes :
    #property indicator_separate_window = the indicator will be in the seperate window.
    #property indicator_chart_window = the indicator will be in the chart window.
    But how can we code it like the picture : the indicator will be at bottom of the chart window. (The same place as of volume).

    Thanks in advance.
    Attached Files Attached Files
    Last edited by sangnakhon; 08-30-2016 at 06:43 AM.

  6. #176
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2910
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Quote Originally Posted by sangnakhon View Post
    ..
    I want to have the volume indicator at the bottom of the chart window like the one in the picture (the same place as the tick_volume in MT4).
    Can somebody who know help me change the indicator I attached to be the same as in the picture, please ?
    Thanks in advance.
    You can look at AllVolumeAverage_v2 600+ indicator from this post (not same but similar).

    And the other one is here.
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  7. #177
    Member
    Join Date
    Dec 2015
    Posts
    32
    Quote Originally Posted by newdigital View Post
    You can look at AllVolumeAverage_v2 600+ indicator from this post (not same but similar).

    And the other one is here.
    Thanks newdigital, but I want the indicator to appear on the bottom of the chart window to save the space of the chart.
    The indicator you show also look interesting. It'll be good, if it appears at the bottom of the chart window.

  8. #178
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2910
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Quote Originally Posted by sangnakhon View Post
    Thanks newdigital, but I want the indicator to appear on the bottom of the chart window to save the space of the chart.
    The indicator you show also look interesting. It'll be good, if it appears at the bottom of the chart window.
    I asked Igorad so I hope he is having the time to make it.
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  9. #179
    Member
    Join Date
    Dec 2015
    Posts
    32
    Quote Originally Posted by newdigital View Post
    I asked Igorad so I hope he is having the time to make it.
    Thank you very much.

  10. #180
    igorad
    Guest
    Quote Originally Posted by sangnakhon View Post
    Click image for larger version. 

Name:	Screen_NZDJPY_D1_18-54-57.gif 
Views:	526 
Size:	25.3 KB 
ID:	22966
    I want to have the volume indicator at the bottom of the chart window like the one in the picture (the same place as the volume in MT4).
    Can somebody who know help me change the indicator I attached to be the same as in the picture, please ?

    Or somebody whot knows just tell me how to change the code & I'll change it myself.
    Normally the codes :
    #property indicator_separate_window = the indicator will be in the seperate window.
    #property indicator_chart_window = the indicator will be in the chart window.
    But how can we code it like the picture : the indicator will be at bottom of the chart window. (The same place as of volume).

    Thanks in advance.
    Hi sangnakhon,

    Please check out the updated Volume Enhanced indicator which plots in the chart window.


    Attachment 22979


    Regards,
    Igor

Page 18 of 34 FirstFirst ... 8 16 17 18 19 20 28 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •