Announcement

Collapse
No announcement yet.

lbr

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

  • lbr

    hello,

    is it possible to get an ad on from linda bradford raschke for esignal?
    momentum pinball,....

    thanks

  • #2
    If it is just momentum pinball you want why not roll your own? I did.

    Comment


    • #3
      it´s 2 p. roc. i dont want to calculate the pivot by myself.
      i think efs could do this but i am not able to write it.

      thanks

      Comment


      • #4
        Try this. I did it in the wizard some time ago.

        //{{EFSWizard_Description
        //
        // This formula was generated by the Alert Wizard
        //
        //}}EFSWizard_Description 7532


        //{{EFSWizard_Declarations

        var vROC1 = new ROCStudy(1, "Close");
        var vRSI3_of_vROC1 = new RSIStudy(3, vROC1, ROCStudy.ROC);
        var vLastAlert = -1;

        //}}EFSWizard_Declarations 15329


        function preMain() {
        /**
        * This function is called only once, before any of the bars are loaded.
        * Place any study or EFS configuration commands here.
        */
        //{{EFSWizard_PreMain
        setShowTitleParameters(false);
        setPriceStudy(false);
        setStudyTitle("JB Momentum Pinball");
        setCursorLabelName("Momentum Pinball", 0);
        setDefaultBarStyle(PS_SOLID, 0);
        setDefaultBarFgColor(Color.red, 0);
        setDefaultBarThickness(1, 0);
        setPlotType(PLOTTYPE_LINE, 0);
        //}}EFSWizard_PreMain 30637

        }

        function main() {
        /**
        * The main() function is called once per bar on all previous bars, once per
        * each incoming completed bar, and if you don't have 'setComputeOnClose(true)'
        * in your preMain(), it is also called on every tick.
        */

        //{{EFSWizard_Expressions
        //{{EFSWizard_Expression_1
        //}}EFSWizard_Expression_1 0

        //}}EFSWizard_Expressions 9063


        //{{EFSWizard_Return
        return vRSI3_of_vROC1.getValue(RSIStudy.RSI);
        //}}EFSWizard_Return 7330

        }

        function postMain() {
        /**
        * The postMain() function is called only once, when the EFS is no longer used for
        * the current symbol (ie, symbol change, chart closing, or application shutdown).
        */
        }

        //{{EFSWizard_Actions
        //{{EFSWizard_Action_1
        function onAction1() {
        vLastAlert = 1;
        }
        //}}EFSWizard_Action_1 5589

        //}}EFSWizard_Actions 15622

        Comment


        • #5
          buhrmaster,

          many thanks. i will try it ealy next year and will give you sesponse.

          tomcat

          Comment

          Working...
          X