TTS system V 4 AFL Provide More Information

TTS SYSTEM V 4 FOR AMIBROKER AFL

 

TTS system V 4 Amibroker AFL is for advance professional users. This AFL is coded by different formulas. That’s mean this AFL is a combined Amibroker AFL. AFL Formula use many terms and condition. By using this afl you can understand the maker movement.

TTS system is well known in Technical Analysis world. It is popular for many information provide at a time in real market. That’s mean you get more information in one page at a time. This AFL Formula refers information like trend line, support & resistance line as well as calculate major point of a pair.

You may follow the Image that gives you more information about this. 

 




Image of AFL [amibroker formula language].

Download TTS SYSTEM V 4 For Amibroker AFL

HERE IS AMIBROKER AFL CODE



How to use  Amibroker AFL

  • Download the Amibroker AFL .
  • Now copy the afl file and paste it to \Program Files\AmiBroker\Formulas\Custom. [For 32 bit]
  • If You have 64 bit operating system than paste it to  \Program Files(x86)\AmiBroker\Formulas\Custom.
  • Go to formula section of Amibroker and you will get the afl in Custom folder.


Tags

4 thoughts on “TTS system V 4 AFL Provide More Information”

  1. Pu says:

    TTS system getting errors.

    • krT group says:

      Starting with Amibroker v6.10, printf/StrFormat implements a check for correct string formatting, as sometimes users passed strings with % which is a special marker for formatting string, instead of %% to print actual percent sign.
      So, to get this working, simply change Line to:

      Close %g (%%.1f%%) {{VALUES}}”, O, H, L, C ));

  2. C Tnomas says:

    I keep getting error 61(Error 61. The number of format specifier(s) (%) does not match the number of arguments passed.)
    at lines 959 and 963.

    • 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.

Leave a Reply

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