Jump to content
Medved Trader Forums

Marty

Members
  • Posts

    51
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by Marty

  1. Hi,

    For quick orders it would be nice to have the following. 
    I use these button in IB TWS to quickly enter trades at the ask or bid with a preset offset so that all my order goes through.
    (The buttons with the *Asterix at the top right are armed and execute immediately)
    But I like your charts better and it would need only 2 buttons and the quantity box.
    Thanks.

    Medved QAT Trade Buttons.png

    IB TWS Trade Buttons.png

  2. Hi,

    I have updated through the software and now get this critical error when starting the app.
    Tried uninstalling, restarted computer and then reinstalled both version (Production and Beta) and always get this error and can no longer use your software.
    How can I resolve this.
    Thank you,

     

    2096182257_MedvedError.png.ea2f29ae008a191e36b6428b7c9aff8b.png

     

  3. How do I do the two following things:

    When using Autoscroll have the cross-hair follow the Y-axis (price) on the other charts instead of snapping to the close of the candle.

    Have trendlines from the Historical Daily charts appear on the Intraday charts.
     

    If these are not possible when, will you implement them soon.
    Thank you

  4. Doing the following but seems that negative numbers are being seen as positive ones.
    Ex.
    -0.02 + 0.05 + -0.01 = 0.02 but in my formual it is being calculated as 0.08

     

    public void MainCalculation()
    {
        DefinePaintbarParameter("AMOUNT", "Change in Cents", false, 0.01, 1000, 0.01, .01);
        
        if ((Close[2] - Open[2]) + (Close[1] - Open[1]) + (Close[1] - Open[1]) > GetPaintbarParameter("AMOUNT")
            
        &&  Close[2] < Open[2]  
        )
         
      {   
        SetColor("Color",0xFF82FF4E);
     }
    }

  5. Was looking at the default Paintbars and noticed that "Def: Unusual Volume" had a small spelling error.

    public void MainCalculation()
    {
        DefinePaintbarParameter("VOLPERCENTUP", "Percent Up", false, 1, 10000, 1, 50);
        DefinePaintbarParameter("MINVOL", "Minimum Bar Vol", true, 0, 1000000000000, 1000, 1000);
        DefinePaintbarParameter("MINXPRICE", "Min Price", false, 0.0001, 10000, 0.1, 5);
        DefinePaintbarParameter("MAXPRICE", "Max Price", false, 0.0001, 10000, 0.1, 1000);

        if (Volume_Bar > Volume_EMA * (1 + GetPaintbarParameter("NUMTOCHECK")) 
            && Volume_Bar >= GetPaintbarParameter("MINVOL")
            && SymbolData.Last >= GetPaintbarParameter("MINPRICE")
            && SymbolData.Last <= GetPaintbarParameter("MAXPRICE"))
        {
            SetColorAndShape("Vol Up", PBShape.ArrowUp_Hollow, SysColor.VolumeUp);
            TriggerAlert("Vol Up");
            SetScanResult(100);
        }
    }

     

    I think  "DefinePaintbarParameter("MINXPRICE", "Min Price", false, 0.0001, 10000, 0.1, 5);"
    should be "MINPRICE"

    Thanks again for your help
    Now working on Having a 1% change in the last 5 candles.

  6. Getting an Error on the Chart (small x besides paintbar name)

    Compile Errors in Paintbar ID: GHTIJIJTLT, "3 G in 5"
    Compile Error at (15,208): Error# CS1041: Identifier expected; 'this' is a keyword
    Compile Error at (75,208): Error# CS1002: ; expected
    Compile Error at (75,208): Error# CS1525: Invalid expression term ')'
    Compile Error at (76,208): Error# CS1002: ; expected

×
×
  • Create New...