Page 14 of 34 FirstFirst ... 4 12 13 14 15 16 24 ... LastLast
Results 131 to 140 of 338
Like Tree79Likes

AllAverages

This is a discussion on AllAverages within the Trading tools forums, part of the Trading Forum category; Originally Posted by igorad Hi Dr.Phoenix, Especially for you I added this kind of moving averages to the list in ...

      
   
  1. #131
    Junior Member
    Join Date
    Apr 2015
    Posts
    28

    Red face

    Quote Originally Posted by igorad View Post
    Hi Dr.Phoenix,

    Especially for you I added this kind of moving averages to the list in the version 4.1 only because I think it's a bit strange to enter MA_Period = 5000 or even 10000.

    Attachment 16819


    Regards,
    Igor

    Igor,

    First of all, Happy New Year of 2016, Be happy, be smart, be strong.

    Second, I have just found that you made eVWMA, I do not know why MA_Period is so high. Anyway, I will try it and, if needed, give you a call.

    Third, many pages ago I said that would be very nice to integrate bands of the standart deviations as it was made in that Market Statistics indicator - you ask me why? - the matter is that I have found that price react on these band clearly (see the picture 1 of mine). That is VWMA plus bands.

    Fourth, at the FF there was published a picture (pic. 2) that shows MAs ( The Club! - Page 1029 @ Forex Factory ). These MAs are of yours. it is the first version of your indicator. It is attached below.
    I have two questions to ask. How does the indicator do manage printing the bands (yellow dotted lines on picture 2) ? And why did you remove the label possibility from your indy?
    I may resume - there would be great to have pissibilities:
    - switch on/off standart deviations bands;
    - switch on/off labels.

    Best,
    D.P.
    Attached Thumbnails Attached Thumbnails AllAverages-2016-01-08_19-57-59.png   AllAverages-ma-bands.jpg  
    Attached Files Attached Files
    Last edited by Dr.Phoenix; 01-08-2016 at 05:31 PM.

  2. #132
    Junior Member
    Join Date
    Apr 2015
    Posts
    28
    Quote Originally Posted by igorad View Post
    Hi Dr.Phoenix,

    Especially for you I added this kind of moving averages to the list in the version 4.1 only because I think it's a bit strange to enter MA_Period = 5000 or even 10000.

    Attachment 16819


    Regards,
    Igor

    As to the MA_Period, I have found the following.

    https://www.linnsoft.com/techind/evw...moving-average

    eVWMA = [(N - v) * eVWMA.1 + v*p] / N where... p = price v = volume of bar N = volume "period". This period can either be specified (as a constant value) or computed as a multiple of the recent average volume.

    Let us try to ubdertsand.

    1. P is price, understandable, no comments;
    2. V - volume of a bar - it seems to undersandable as well;
    3. N is volume "period". This period can either be specified (as a constant value) or computed as a multiple of the recent average volume.
    Here we have a problem. In the original formula N is the number of shares floating. However we have no shares in FOREX. That is why we have difficulties up on this issue.
    So, look at the picture at the abowe link. You can see eVWMA(DELL, 10000). I suppose, N = constant and is qual to be 10000. That is the answer why we should take MA-period to be a high number.

    Let us discuss.

    Best,
    D.P.

  3. #133
    igorad
    Guest
    Quote Originally Posted by Dr.Phoenix View Post
    As to the MA_Period, I have found the following.

    https://www.linnsoft.com/techind/evw...moving-average

    eVWMA = [(N - v) * eVWMA.1 + v*p] / N where... p = price v = volume of bar N = volume "period". This period can either be specified (as a constant value) or computed as a multiple of the recent average volume.

    Let us try to ubdertsand.

    1. P is price, understandable, no comments;
    2. V - volume of a bar - it seems to undersandable as well;
    3. N is volume "period". This period can either be specified (as a constant value) or computed as a multiple of the recent average volume.
    Here we have a problem. In the original formula N is the number of shares floating. However we have no shares in FOREX. That is why we have difficulties up on this issue.
    So, look at the picture at the abowe link. You can see eVWMA(DELL, 10000). I suppose, N = constant and is qual to be 10000. That is the answer why we should take MA-period to be a high number.

    Let us discuss.

    Best,
    D.P.
    Hi Dr.Phoenix,

    Please check out the updated AllAverages(v4.11) with the eVWMA modified formula where I use sum(Volume,N) instead of the volume"period". I think this modification looks much better than the original version.

    Attachment 17733


    Regards,
    Igor
    Saimon likes this.

  4. #134
    Junior Member
    Join Date
    Jan 2016
    Location
    SHROPSHIRE, UK
    Posts
    1
    This is another great indicator but it slows (not freezes) the platform on the offline (rangebar) charts.
    When I remove the concencus indi the chart runs normally.
    Any ideas as to how to avoid this please?
    TEAMTRADER
    Quote Originally Posted by igorad View Post
    Hi padnoter,

    Please take a look at my version of the AllAveragesConsensus with ability to plot arrows on the main chart.

    Code:
    extern int     TimeFrame         =     0;   //TimeFrame in min
    extern int     Price             =     0;   //Price = 0...10 (see List of Prices) 
    extern int     MA_Period         =    20;   //Period of smoothing
    extern int     Consensus_Level   =    15;   //Consensus Level 
    
    extern string  alerts            = "--- Alerts & E-Mails ---";
    extern int     AlertMode         =     0;
    extern int     SoundsNumber      =     5;   //Number of sounds after Signal
    extern int     SoundsPause       =     5;   //Pause in sec between sounds 
    extern string  UpSound           = "alert.wav";
    extern string  DnSound           = "alert2.wav";
    extern int     EmailMode         =     0;   //0-on,1-off   
    extern int     EmailsNumber      =     1;   //0-on,1-off
    
    extern string  arrows            = "--- Arrows Settings ---";
    extern int     ArrowsMode        =     1;   //0-off,1-on    
    extern int     ArrowSize         =    11;
    extern string  ArrowFontName     = "Wingdings";
    extern int     ArrowBuyCode      =   233;
    extern int     ArrowSellCode     =   234;
    extern color   UpArrowColor      = DeepSkyBlue;
    extern color   DnArrowColor      = LightCoral;
    extern string  UniqueName        = "AllAvgCons";
    Attachment 2941

    Regards,
    Igor

  5. #135
    Junior Member
    Join Date
    Apr 2015
    Posts
    28
    Quote Originally Posted by igorad View Post
    Hi Dr.Phoenix,

    Please check out the updated AllAverages(v4.11) with the eVWMA modified formula where I use sum(Volume,N) instead of the volume"period". I think this modification looks much better than the original version.

    Attachment 17733


    Regards,
    Igor
    Yep, I understood what you had made.
    It is a solution for sure, but it is not original, unfortunately - it is a MOD for eVWMA, as you said.
    Your mod can definetly be used in trading. However if you are about to proceed, I am in.

    Best
    D.P.

  6. #136
    Senior Member
    Join Date
    May 2015
    Posts
    108
    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...

    AllAverages-audnzd-m4-axicorp-financial-services.png

    AllAverages-audnzd-m4-axicorp-financial-services-2.png

    AllAverages-audnzd-m4-axicorp-financial-services-3.png

    AllAverages-audnzd-m4-axicorp-financial-services-4.png

    AllAverages-audnzd-m4-axicorp-financial-services-5.png

    Good work...thanks

    regards

  7. #137
    igorad
    Guest
    Hi,

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



    Regards,
    Igor
    Attached Files Attached Files
    chartartist and meda like this.

  8. #138
    igorad
    Guest
    Hi,

    Please check out the updated AllBollingerBands indicator with the new of MAs and with the price lebels.


    Attachment 19041


    Regards,
    Igor
    chartartist and Saimon like this.

  9. #139
    Junior Member
    Join Date
    Apr 2015
    Posts
    28
    Hi, Igor

    I do not get it.
    this indicator consist of BBs or deviations to be calculated.
    Actually these are different algorythms.
    How did you manage to consolidate them?

    D.P.

  10. #140
    igorad
    Guest
    Quote Originally Posted by Dr.Phoenix View Post
    Hi, Igor

    I do not get it.
    this indicator consist of BBs or deviations to be calculated.
    Actually these are different algorythms.
    How did you manage to consolidate them?

    D.P.
    Hi Dr.Phoenix,

    In the indicator I use the following formula:

    StdDev = Sqrt(Sum(Pow(Price[i] - Avg[i]),2),N)/N),

    where N - deviation period,
    Avg[i] - moving average from our set on i-th bar
    Price[i] - price on i-th bar


    Regards,
    Igor

Page 14 of 34 FirstFirst ... 4 12 13 14 15 16 24 ... 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
  •