fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search

    How do I convert this to mql5

    Questions & Answers
    2
    2
    1172
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • J
      jzfusion last edited by

      @roar

      I'm trying to get the massive tutorial template to work in mql5. It seems this bit of code is not compatible with mql5

      vdSwapSell=NormalizeDouble(MarketInfo(Symbol(),MODE_SWAPSHORT),3);
      vdSwapBuy=NormalizeDouble(MarketInfo(Symbol(),MODE_SWAPLONG),3);

      I get these errors. I suspect they are expressed differently in MT5

      ')' - open parenthesis expected
      'MarketInfo' - undeclared identifier
      'MODE_SWAPSHORT' - undeclared identifier
      'MODE_SWAPSHORT' - some operator expected
      'Symbol' - some operator expected
      '3' - unexpected token
      'MarketInfo' - undeclared identifier
      'MODE_SWAPLONG' - undeclared identifier
      'MODE_SWAPLONG' - some operator expected
      'Symbol' - some operator expected
      '3' - unexpected token

      roar 1 Reply Last reply Reply Quote 0
      • roar
        roar @jzfusion last edited by

        @jzfusion try using these lines of code:

        vdSwapSell=NormalizeDouble(SymbolInfoDouble(Symbol(), SYMBOL_SWAP_SHORT),3);
        vdSwapBuy=NormalizeDouble(SymbolInfoDouble(Symbol(), SYMBOL_SWAP_LONG),3);

        https://www.mql5.com/en/docs/marketinformation/symbolinfodouble
        https://www.mql5.com/en/docs/constants/environment_state/marketinfoconstants#enum_symbol_info_double

        Need small help? Tag me in your post
        Need big help? https://www.fiverr.com/big_algo/automate-your-winning-strategy-in-mql4-or-mql5

        1 Reply Last reply Reply Quote 0
        • 1 / 1
        • First post
          Last post

        Online Users

        A
        B
        S
        E
        W
        M
        M
        A
        A

        25
        Online

        146.6k
        Users

        22.4k
        Topics

        122.6k
        Posts

        Powered by NodeBB Forums | Contributors