Announcement

Collapse
No announcement yet.

Convert ET Time into Central European Time

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

  • Convert ET Time into Central European Time

    Hello,

    how can I replace this time as follows in to
    central european time:

    aFPArray[x] = new FunctionParameter( "fMarketOpen", FunctionParameter.STRING);
    with( aFPArray[x] ) {
    setName( "Market Open Time" );
    setDefault( "09:30" );
    }

    09:30 ET equals 15:30 CET

    Thanks for help

    regards

    Roland

  • #2
    Re: Convert ET Time into Central European Time

    roland_p71
    Based on the snippet of code you posted it seems that the time is a user defined parameter of the efs. In that case just input the desired time through Edit Studies
    If instead you want 15:30 to be the default value then replace 09:30 with 15:30 in that section of code and save the script
    Alex


    Originally posted by roland_p71
    Hello,

    how can I replace this time as follows in to
    central european time:

    aFPArray[x] = new FunctionParameter( "fMarketOpen", FunctionParameter.STRING);
    with( aFPArray[x] ) {
    setName( "Market Open Time" );
    setDefault( "09:30" );
    }

    09:30 ET equals 15:30 CET

    Thanks for help

    regards

    Roland

    Comment

    Working...
    X