Announcement

Collapse
No announcement yet.

Candlestick: Hanging Man

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

  • Candlestick: Hanging Man

    File Name: HangingMan.efs

    Description:
    Hanging Man

    Formula Parameters:
    Font : Arial Narrow
    Font Size : 11
    Font and Shape Color : Green
    Font BgColor : White



    Notes:
    This is a bearish reversal candlestick which occurs in an uptrend. It has a small
    real body at the top of the candlestick and a long lower shadow.



    Download File:
    HangingMan.efs



    EFS Code:
    PHP Code:
    /*********************************
    Provided By:  
        eSignal (Copyright c eSignal), a division of Interactive Data 
        Corporation. 2010. 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:        
        Hanging Man

    Version:            1.0  01/12/2010

    Formula Parameters:                     Default:
        Font                                Arial Narrow
        Font Size                           11
        Font and Shape Color                Green
        Font BgColor                        White
        
    Notes:
        This is a bearish reversal candlestick which occurs in an uptrend. It has a small 
        real body at the top of the candlestick and a long lower shadow.  
    **********************************/

    var fpArray = new Array();

    function 
    preMain() {
        
    setPriceStudy(true);
        
    setStudyTitle("Hanging Man");
        
    setShowCursorLabel(false);
        
    setShowTitleParameters(false);
        var 
    x=0;
        
    fpArray[x] = new FunctionParameter("nFontSize"FunctionParameter.NUMBER);
        
    with(fpArray[x++]){
            
    setName("Font Size")
            
    setLowerLimit(6);        
            
    setDefault(11);
        }
        
    fpArray[x] = new FunctionParameter("cFontColor"FunctionParameter.COLOR);
        
    with(fpArray[x++]){
            
    setName("Font and Shape Color");
            
    setDefault(Color.green);
        }    
        
    fpArray[x] = new FunctionParameter("cFontBgColor"FunctionParameter.COLOR);
        
    with(fpArray[x++]){
            
    setName("Font BgColor");
            
    setDefault(Color.white);
        }    
        
    fpArray[x] = new FunctionParameter("sFont"FunctionParameter.STRING);
        
    with(fpArray[x++]){
            
    setName("Font");
            
    setDefault("Arial Narrow");
        }    
    }

    function 
    main(sFontnFontSizecFontColorcFontBgColor) {
        
    Find_HangingMan(sFontnFontSizecFontColorcFontBgColor);
        return;
    }

    function 
    Find_HangingMan(sFontnFontSizecFontColorcFontBgColor) {
    var 
    nState getBarState();
    var 
    Open open(0);
    var 
    Close close(0);
    var 
    Open1 open(-1);
    var 
    Close1 close(-1);
    var 
    High high(0);
    var 
    Low low(0);
    var 
    nID getCurrentBarCount();
        if (
    nState == BARSTATE_ALLBARS) {
            if (
    sFont == nullsFont "Arial Narrow";
            if (
    nFontSize == nullnFontSize 11;
            if (
    cFontColor == nullcFontColor Color.green;
            if (
    cFontBgColor == nullcFontBgColor Color.white;
        }
        if (
    Low Math.max(Open1Close1) &&
            
    Math.abs(Open Close) * < (Math.min(OpenClose) - Low) &&
            (
    High Math.max(OpenClose)) < 0.05 * (Math.abs(Open Close))) {
            
    drawTextRelative(0AboveBar2"HaMan"cFontColorcFontBgColorText.PRESET Text.CENTERsFontnFontSize"T"+nID); 
            
    drawShapeRelative(0AboveBar1Shape.DOWNARROWnullcFontColorShape.PRESET"S"+nID); 
        } else {
            
    removeText("T"+nID);
            
    removeShape("S"+nID);
        }
        
    //L > Max(O1, C1) and Abs(O - C) < (Min(O, C) - L) * 3 and (H - Max(O, C)) < 0.05 * (Abs(O - C))
        
    return;

Working...
X