Announcement

Collapse
No announcement yet.

return best bid in esf study

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • return best bid in esf study

    Hi
    My problem is this: I have to return the bid and the ask in an EFS study.
    I need the best bid and best ask, so I do not need "getmostrecentbid"
    and even the marketdepth.
    there is a simpler way? Help me !!!
    Thanks

    I send you a simple example to explain what I want to do:

    function preMain()
    {
    }

    var bid1 = null;

    function main()
    {

    bid1 = ???????
    */ how to return the best bid ?, with a DDE link,
    */ or more, but not getmostrecentbid ?
    */ help me if there is a solution with an example, thanks
    }

    return bid1;
    }

  • #2
    AlfonsoG
    I have already replied earlier today to the other thread of yours on this same topic
    Alex


    Originally posted by AlfonsoG View Post
    Hi
    My problem is this: I have to return the bid and the ask in an EFS study.
    I need the best bid and best ask, so I do not need "getmostrecentbid"
    and even the marketdepth.
    there is a simpler way? Help me !!!
    Thanks

    I send you a simple example to explain what I want to do:

    function preMain()
    {
    }

    var bid1 = null;

    function main()
    {

    bid1 = ???????
    */ how to return the best bid ?, with a DDE link,
    */ or more, but not getmostrecentbid ?
    */ help me if there is a solution with an example, thanks
    }

    return bid1;
    }

    Comment

    Working...
    X