WMA Band with Explain AFL for Amibroker

WMA Band with Explain AFL for Amibroker

 

WMA Band with Explain AFL for amibroker is a formula language which indicates different type of analysis with your stock or Forex instrument. By this AFL you can find easily understand the position of a stock or Forex pair.

First look at the picture. when price goes goes to narrow band and than expansion in up or down than you may take a position buy or sell. By this you can also see the expiation what candle is mean and what to do.

Also in WMA Band with Explain AFL we use VSA for the price action method which is more powerful for every trade. In this afl you may enjoy in every moment of trade signal and must obey the rules.Also in WMA band its like a use of or rules of Bollinger Bands. If you didn’t know Bollinger Bands theory than you visit here. Best use Bollinger Bands what you not know

 

                                               How to exist                                    

By using money management system you may exist.It is better to use 2%-6% money management system use.

WMA Band with Explain AFL for Amibroker Code

                                               How to use                                         

Download the AFL WMA Band with Explain AFL

Now copy the afl file and paste it to Program Files Amibroker Formulas Custom

Now go to formula section of Amibroker and you will get the afl in Custom folder.

Hope you enjoy the Amibroker WMA Band with Explain AFL . If you want to more AFL than you may visit our other AFL by clicking here.

Happy Trading……………..


5 thoughts on “WMA Band with Explain AFL for Amibroker”

  1. thomle says:

    Error 61.
    The number of format specifier(s) (%) does not match the number of arguments passed.

    • krT group says:

      Some of your names or fullnames seem to have “%” sign included.

      From AB 6.07 development version:
      AFL: printf/StrFormat now implements a check for a correct formatting string as sometimes users passed strings with % that is a special marker for formatting string instead of %% to print actual percent sign.

      Solution: Use the lower version of Amibroker 5.40 to 6.00 or write the below code instead of %.
      —————————–
      Some of your FullNames contain “%” characters (percent sign). “%” is also used in format specifiers (i.e. “%g”, “%s”, “%1.2f” etc.). Your formula contains printf function. printf uses format specifiers. So if you want to print the percent sign instead of using it for format specifiers you need to add another “%” character in front of the existing “%” character of your tname substring (in your case Fullname() ).
      ==============================================
      So
      ==============================================
      nm = Name();
      fnm = StrReplace(FullName(), “%”, “%%”);
      tname = nm + “(” + fnm + “)”;
      printf( tname );
      ==============================
      or for example
      ===============================
      nm = Name();
      fnm = StrReplace(FullName(), “%”, “%%”);
      tname = StrFormat( “%s(%s)”, nm, fnm );
      printf( tname );
      ===================================================
      or just
      ===================================================
      nm = Name();
      fnm = StrReplace(FullName(), “%”, “%%”);
      printf( “%s(%s)”, nm, fnm );

      —————————————————–
      The latter two examples require AmiBroker 6.20 because of the new “%s” format specifier.

  2. How to solve this error?
    Error 61.
    The number of format specifier(s) (%) does not match the number of arguments passed.

Leave a Reply

Your email address will not be published. Required fields are marked *