龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2018-11-27 16:49

StiffnessIndicator指标[eSIGNAL]

For this month’s Traders’ Tip, we’ve provided the StiffnessIndicator.efs study based on the article by Markos Katsanos in this issue, “The Stiffness Indicator.” This study attempts to determine if markets are in a strong price trend.

The study contains formula parameters that may be configured through the edit chart window (right-click on the chart and select “edit chart”). A sample chart is shown in Figure 2.

[attach]5571[/attach]

龙听 发表于 2018-11-27 16:50

[code]
/*********************************
Provided By:  
eSignal (Copyright c eSignal), a division of Interactive Data
Corporation. 2016. 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:        
    The Stiffness Indicator by Markos Katsanos
   

Version:            1.00  9/14/2018

Formula Parameters:                     Default:
Period                                  60
MA DAYS                                 100
STIFFNESS CRITICAl                      90

Notes:
The related article is copyrighted material. If you are not a subscriber
of Stocks & Commodities, please visit www.traders.com.

**********************************/

var fpArray = new Array();

function preMain(){
    setPriceStudy(false);
    setStudyTitle("Stiffness Indicator");
    setCursorLabelName("STIFFNESS");
    setPlotType(PLOTTYPE_HISTOGRAM);
   
    var x = 0;
    fpArray[x] = new FunctionParameter("Period", FunctionParameter.NUMBER);
        with(fpArray[x++]){
        setName("STIFFNESS PERIOD");
        setLowerLimit(1);
        setDefault(60);
        
    }

    fpArray[x] = new FunctionParameter("MAB", FunctionParameter.NUMBER);
        with(fpArray[x++]){
        setName("MA DAYS");
        setLowerLimit(1);
        setDefault(100);
      
    }
    fpArray[x] = new FunctionParameter("STIFFCRIT", FunctionParameter.NUMBER);
        with(fpArray[x++]){
        setName("STIFFNESS CRITICAl");
        setLowerLimit(1);
        setDefault(90);
        
    }
}

var bInit = false;
var bVersion = null;
var xClose = null;
var xMA2 = null;
var nEntryPrice = null;
var xLow = null;
var xHigh = null;
var vStopPrice = null;
var bIsLong = null;
var xCloseSPY = null;
var xEMA = null;
var xStiffness = null;
var bWasLong = false;


function main(Period, MAB, STIFFCRIT){
    if (bVersion == null) bVersion = verify();
    if (bVersion == false) return;
        
    if (getBarState() == BARSTATE_ALLBARS){
        bInit = false;
        bIsLong = false;
    }

    if (getCurrentBarCount() < Period) return;
   
    if (!bInit){
        
        xCloseSPY = close("SPY");
        xClose = close();
        xHigh = high();
        xLow = low();
        bIsLong = false;
        bWasLong = false;
            
        xMA2 = efsInternal("Calc_MA2", xClose, MAB);
        xEMA = efsInternal("Calc_Ema", xCloseSPY, MAB);
        xStiffness = efsInternal("Calc_Stif", xClose, Period, xMA2);
        
        addBand(STIFFCRIT, PS_DASH, 1, Color.grey, 2);
        
        bInit = true;
    }

   
    if (getBarState() == BARSTATE_NEWBAR && xStiffness.getValue(-1) != null)  {   
         if ((xStiffness.getValue(0)<= STIFFCRIT) && bIsLong){      
            
            if (xStiffness.getValue(-1) > STIFFCRIT){
                drawTextRelative(0, TopRow1, "\u00EA", Color.red, null, Text.PRESET|Text.CENTER, "Wingdings", 10, "Exit"+rawtime(0));
                bIsLong = false;                    
            }
            else {
                removeText("Long"+rawtime(0));
                removeText("Text"+rawtime(0));
            }
            bIsLong = false;
        }
   
        if (xEMA.getValue(0) >= xEMA.getValue(-2) && !bIsLong && (xStiffness.getValue(-1) < STIFFCRIT)){                  
            
            if ((xStiffness.getValue(1) > STIFFCRIT)){
                 
                drawTextRelative(0, TopRow1, "\u00E9", Color.green, null, Text.PRESET|Text.CENTER, "Wingdings", 10, "Long"+rawtime(0));
                bIsLong = true;
                bWasLong = true;
            }      
            else {
                removeText("Exit"+rawtime(0));
                removeText("TextExit"+rawtime(0));
                if (bWasLong)
                    bIsLong = true;
                    
            }
        }
    }
    return (xStiffness.getValue(0))
}

var P = null;

function Calc_Stif (xClose, Period, xMA2){
    if (xClose.getValue(-Period) == null || xMA2.getValue(-Period) == null) return;
   
    P = 0;
    for (var i = 0; i < Period; i++) {
        
        if (xClose.getValue(-i) > xMA2.getValue(-i)) P++;
    }
    return (P * 100 / Period);
}

function Calc_MA2(xClose, MAB){   
    if (xClose.getValue(-MAB) == null) return;
    return (sma(MAB) - 0.2 * stdDev(MAB));
}

function Calc_Ema(xCloseSPY, MAB){
    if (xCloseSPY.getValue(-MAB) == null) return;
    return ema(MAB, sym("SPY," + getInterval()));
}

function verify(){
    var b = false;
    if (getBuildNumber() < 3756){
        
        drawTextAbsolute(5, 35, "This study requires version 10.6 or later.",
            Color.white, Color.blue, Text.RELATIVETOBOTTOM|Text.RELATIVETOLEFT|Text.BOLD|Text.LEFT,
            null, 13, "error");
        drawTextAbsolute(5, 20, "Click HERE to upgrade.@URL=http://www.esignal.com/download/default.asp",
            Color.white, Color.blue, Text.RELATIVETOBOTTOM|Text.RELATIVETOLEFT|Text.BOLD|Text.LEFT,
            null, 13, "upgrade");
        return b;
    }
    else
        b = true;
   
    return b;
}

[/code]
[attach]5571[/attach]

页: [1]
渠道·推广(20年运营值得信赖!)▼:温馨提示:期货论坛稳定、流畅的访问体验有赖于赞助商的广告支持,赞助商业务内容非本站官方业务,期货、证券及外汇投资均有亏损的风险,访问赞助商广告即代表您已了解其中的风险。欢迎意向赞助商联系客服或管理员咨询相关事宜。
                     
❤️2025年通过期货论坛开户享受如下优惠政策:政策一:手续费最低交易所+1分起,政策二:日内炒单及大资金享更高比率返还,政策三:保证金可申请交易所标准+0,政策四:开户即享有论坛Prime会员资格(价值199元/年),开户咨询管理员或右侧客服! 😋欧美期货杂志购买、下载与中文翻译:/thread-10603-1-1.html |TB/MC开户优惠政策:/thread-5986-1-1.html2025年最新交易所手续费表:/thread-7537-1-1.htmlSC2.png2025年最新中文翻译:/thread-160355-1-1.html;
欧美期货程序化期刊中文翻译目录: 【1982/83.01-12期】 【1984.01-12期】 【1985.01-12期】 【1986.01-12期】 【1987.01-12期】 【1988.01-12期】 【1989.01-12期】 【1990.01-12期】 【1991.01-12期】 【1992.01-12期】 【1993.01-12期】 【1994.01-12期】 【1995.01-12期】 【1996.01-12期】 【1997.01-12期】 【1998.01-12期】 【1999.01-12期】 【2000.01-12期】 【2001.01-12期】 【2002.01-12期】 【2003.01-12期】 【2004.01-12期】 【2005.01-12期】 【2006.01-12期】 【2007.01-12期】 【2008.01-12期】 【2009.01-12期】 【2010.01-12期】 【2011.01-12期】 【2012.01-12期】 【2013.01-12期】 【2014.01-12期】正在更新中...... 【2015.01-12期】待补 【2016.01-12期】待补 【2017.01-12期】正在更新中...... 【2018.01-12期】 【2019.01-12期】 【2020.01-12期】 【2021.01-12期】 【2022.01-12期】 【2023.01-12期】 【2024.01-12期】 【2025.01-12期】正在更新中......
欧美杂志精华: 欧美杂志2025年最新中文翻译 量化交易 技术分析 心理研究 套利/统计 波浪理论 江恩理论 道氏理论 策略开发 动量交易 量化建模 神经网络 资金管理 行为金融 图表/形态 蜡烛/K线 Van K. Tharp Wyckoff 名人采访 投机新手 量化问答(Q&A) 外汇货币 交易池(Pool) TS/MC量化 点数(P&F)图 [基金/ETF] [加密货币] [Algo(Q&A)] [人工智能(AI)] 真实世界 期货世界 《Futures Truth》 《Futures&Options》