Announcement

Collapse
No announcement yet.

Jurik Settings

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

  • Jurik Settings

    Hello, welcome.

    For those who use Jurik, what settings do you recommend?

    JMA#1
    JMA#2
    RSX
    DMX
    VEL

    What time frame?

    3 Minute
    5 Minute
    etc.

  • #2
    Hi

    Try using 5 and 13 JMA with 55 Phase on 8 min SPOO or ES

    Rao

    Comment


    • #3
      Jurik

      I use a 12 and 24 with a 50 phase. I toggle between 1,2,3,5,15 min charts. Depends what kind of trade I'm looking for.

      Comment


      • #4
        I use this VEL Hisitogram

        to look for divergences.



        /************************************************** ************************************************** */
        var study = new JurikVELStudy(10,"close");

        function preMain() {
        /* Set the title that will appear in the study pane */
        setStudyTitle("VEL 10");

        setDefaultBarFgColor(Color.white);
        setDefaultBarThickness(2);
        setDefaultBarStyle(PS_SOLID);
        setPlotType(PLOTTYPE_HISTOGRAM)

        /* Set the label that will appear in the cursor window */
        setCursorLabelName("VEL");



        /* Add Bands to appear in the study window */

        addBand(0, PS_SOLID, 1, Color.magenta);
        }

        function main() {

        /*
        * This is optional. You can set properties for each bar.
        */
        var vVEL = study.getValue(JurikVELStudy.VEL)
        if(vVEL >= .01) {
        setBarStyle(PS_SOLID);
        setBarThickness(1);
        setBarFgColor(Color.lime);
        } else if(vVEL <= -.01) {
        setBarStyle(PS_SOLID);
        setBarThickness(1);
        setBarFgColor(Color.red);
        }

        /*
        * The return value is what will be plotted the chart.
        */
        return (vVEL);

        }

        Comment


        • #5
          Dukefist

          Please post your VEL formula in file share. I would like to take a look at it

          Thanks

          Jabez

          Comment

          Working...
          X