Announcement

Collapse
No announcement yet.

Min Point Value

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Min Point Value

    Hi,

    is there any code or keyword to get the minimum point value?

    For example
    Symbol Price Min Point Value
    EUR A0-FX 1.3055 .0001
    GBPJPY A0-FX 198.88 .01

    Thanks
    EK

  • #2
    EK
    Not that I am aware of. You may want to send in a suggestion to [email protected]
    Alex

    Comment


    • #3
      Ok

      Thanks Alex
      EK

      Comment


      • #4
        EK,

        FWIW, here is the code that I use to determine the min move of a given symbol as the efs is loading.

        outside main()


        PHP Code:
        var mMove=1000;
        function 
        Min_Move(){
        var 
        cDelta Math.abs(close(0)-close(-1));
        if (
        cDelta)mMove Math.min(cDelta,mMove);

        inside main()



        PHP Code:
        if (getCurrentBarIndex()<-&& barcount>3)Min_Move(); 
        where barcount is the number of bars that have been loaded.

        Comment


        • #5
          What we really need here is a function that calls out to DB that's maintained by eSignal on the web. Parameter is symbol and return is tick size.
          Standing on the shoulders of giants.

          Comment

          Working...
          X