Minimum Lot or volume as text then copy to clipboard

 

please i want to be able to get out the minimum volume (or lot size) and get it copied to clipboard but it returns 34 instead.


This is what i have 


              
               text+="\r\n"+"Minimum Lot => "+SYMBOL_VOLUME_MIN;
               text+="\r\n"+"Remember to ALWAYS Manage Your Money Well";
               CopyTextToClipboard(text);
              }
 
  1. Don't double post! You already had this thread open.
              General rules and best pratices of the Forum. - General - MQL5 programming forum (2017)

  2. Oluseyi Elemosho: but it returns 34 instead.
    text+="\r\n"+"Minimum Lot => "+SYMBOL_VOLUME_MIN;

    SYMBOL_VOLUME_MIN is an enumeration, a constant.

    Perhaps you should read the manual. SymbolInfoDouble
       How To Ask Questions The Smart Way. (2004)
          How To Interpret Answers.
             RTFM and STFW: How To Tell You've Seriously Screwed Up.