Announcement

Collapse
No announcement yet.

Mba

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Mba

    File Name: MBA.efs

    Description:
    MBA

    Formula Parameters:


    Notes:


    Download File:
    MBA.efs



    EFS Code:
    PHP Code:
    /*********************************
    Provided By:  
        eSignal (Copyright c eSignal), a division of Interactive Data 
        Corporation. 2009. All rights reserved. This sample eSignal 
        Formula Script (EFS) is for educational purposes only and may be 
        modified and saved under a new file name.  eSignal is not responsible
        for the functionality once modified.  eSignal reserves the right 
        to modify and overwrite this EFS file with each new release.

    Description:        
        MBA
    Version:            1.0  08/26/2009
     
    Formula Parameters:                     Default:
       
    Notes:
        
    **********************************/
    var bInit false;

    function 
    preMain(){
        
    setPriceStudy(false);
        
    setShowCursorLabel(true);
        
    setShowTitleParameters(false);
        
    setStudyTitle("MBA");
        
    setCursorLabelName("1"0);
        
    setDefaultBarFgColor(Color.red0);
        
    setPlotType(PLOTTYPE_HISTOGRAM0);
        
    setDefaultBarThickness(2,0);        
        
    setCursorLabelName("2"1);
        
    setDefaultBarFgColor(Color.blue1);
        
    setPlotType(PLOTTYPE_LINE1);
    }

    var 
    xMA_MBA null;

    function 
    main() {
    var 
    nMA_MBA 0;
    var 
    nMA_MBA1 0;
        if (
    bInit == false) {
            
    xMA_MBA sma(2efsInternal("Calc_MBA"));
            
    bInit true;
        }
        
    nMA_MBA xMA_MBA.getValue(0);
        
    nMA_MBA1 xMA_MBA.getValue(-1);    
        if (
    nMA_MBA1 == null) return;
        if (
    nMA_MBA nMA_MBA1setBarFgColor(Color.green0);    
        if (
    nMA_MBA <= nMA_MBA1setBarFgColor(Color.yellow0);        
        return new Array(
    nMA_MBAnMA_MBA);
    }

    var 
    bSecondInit false;
    var 
    xMACD null;
    var 
    xStoch null;
    var 
    xRSI null;
    var 
    xMoment null;

    function 
    Calc_MBA() {
    var 
    nRes 0;
    var 
    nMACD 0;
    var 
    nStoch 0
    var 
    nRSI 0;
    var 
    nMoment 0;
        if (!
    bSecondInit) {
            
    xMACD macd(12269);
            
    xStoch stochK(921);
            
    xRSI rsi(9);
            
    xMoment mom(9);
            
    bSecondInit true;
        }
        
    nMACD xMACD.getValue(0);
        
    nStoch xStoch.getValue(0) * 1000;
        
    nRSI xRSI.getValue(0);
        
    nMoment xMoment.getValue(0) + 100;
        if (
    nMACD == null || nStoch == null || nRSI == null || nMoment == null) return;
        if (
    nMoment != 0) {
            
    nRes nStoch * (nMACD nRSI) / nMoment;    
        } else {
            
    nRes 0;
        }    
        return 
    nRes;

Working...
X