怎样在matlab中写技术,Technical-indicators-by-Matlab 用 编写了20几个常见的技术指标,方便大家开发策略时候,直接调用。 1) 这 266万源代码下载- www....

文件名称: Technical-indicators-by-Matlab891ea1e7dab975064c6bfd22796603ae.gif下载  收藏√  [443d104427974206832dc4b12407db70.gif

 5  4  3  2  1 fb9128a58cbeaabbeb3718ed75079ccf.gif]

开发工具: matlab

文件大小: 176 KB

上传时间: 2014-11-30

下载次数: 111

提 供 者: 也有

详细说明:用matlab编写了20几个常见的技术指标,方便大家开发策略时候,直接调用。

1)编写这些函数不是技术活,完全是体力活

2)之所以编写这些函数,一来是自己研究所需,二来自己编写过程中能够感悟到蕴含在公式中的思想

3)几乎所有函数,我都用数据测试过,并和交易开拓者、同花顺等计算的值进行了比对,最大程度

上保证指标算法的准确性。虽然已近极力避免错误,但是还是可能出现一些这样那样的错误,所以

请批判性使用这些函数

4)如果对这些函数有疑问(比如有些指标可能会有不同的处理方法),请参见函数中的参考文献部分

5)如果您的策略用到了这些函数,请一定研究这些函数的编写过程,避免未来函数、偷价漏价对你造成的干扰。-20 using matlab few common technical indicators, to facilitate the development of strategies when called directly.

1) preparation of these functions are not technology live, is completely manual labor

2 thoughts) reason to write these functions, one is required for their own research, and secondly to be able to comprehend the process of writing their own inherent in the formula

3) Almost all of the functions that I have tested with the data, and the Trail Blazers and trading, such as flush with the calculated values were compared right, the greatest degree of

On indicators to ensure the accuracy of the algorithm. Although almost try to avoid mistakes, but still may be some kind or another error,

Please use these critical functions

4) If you have questions about these functions (for example, some indicators may have different processing methods), see the References section function

5) If your policy to use these functions, be sure to study the process of

文件列表(点击判断是否您需要的文件,如果是垃圾请在下面评价投诉):

技术分析指标工具箱

..................\AD.m

..................\ARBR.m

..................\AROON.m

..................\ATR.m

..................\BIAS.m

..................\BOLL.m

..................\CCI.m

..................\CMO.m

..................\CR.m

..................\CV.m

..................\DMA.m

..................\DMI.m

..................\DPO.m

..................\EMA.m

..................\EMV.m

..................\ENV.m

..................\ForceIndex.m

..................\KDJ.m

..................\MA.m

..................\MACD.m

..................\MFI.m

..................\MIKE.m

..................\MTM.m

..................\NVI.m

..................\OBV.m

..................\PSY.m

..................\PVI.m

..................\ROC.m

..................\RSI.m

..................\RVI.m

..................\SAR.m

..................\TRIX.m

..................\VHF.m

..................\VR.m

..................\WAD.m

..................\WMS.m

..................\WVAD.m

..................\列表.jpg

..................\说明.txt

输入关键字,在本站266万海量源码库中尽情搜索:

帮助

[matlab-interface-CTP.rar] - matlab调用CTP接口的例子,实用性强

[day2mat.rar] - 用matlab读取大智慧数据下载的.day文件,得到股票数据。

[work.zip] - 自己写的matlab上GUI界面,可以读取行情软件导出的txt格式历史数据,并汇出k线和技术指标,可以通过GUI编辑设置、各种指标及其参数。主图附图指标编辑通过编写脚步实现,有例子。

解压后,将work下的dir.mat中的wkdir变量修改成与你放置的目录一致,也可以就将work放置在"d:/m

[MatlabTraderGUI-V1.1-by-faruto.rar] - MATLAB行情软件MatlabTraderGUI V1.0(Beta版本)

[code.rar] - 一个利用MATLAB编写的螺纹钢期货高频交易套利策略。本策略主要使用移动平均(Moving Average)+RSI 指数策略进行交易判定。其基本思想是 MA 策略对 于明显 趋势走效果较好,而 RSI 策略适用于震荡的行情 ,对两种策略 产生的信号合成之后具有较强抵抗风险的能力 。实际验中,在对初

[bpMATLABstock.rar] - 本程序采用MATLAB实现神经网络对股票预测的功能,带有实验数据以及输出结果

[mallatMATLAB.rar] - 这是mallat算法的matlab程序应用,对于想要进行股票预测的股民或者学生,这是必不可少的程序阿,有什么需要,我会尽量满足大家的。

[bengteng-system.rar] - 期货程序化交易

趋势跟踪策略

应用于期货市场自动交易程序化交易的系统,替代原本手工下单,手工追单,手工撤单等,利用计算机语言进行完整策略交易,本次上传的系统原理是仓量线上下高抛低吸,和轨道突破模型的结合,希望和大家相互学习

[Trading-Strategies-(14).zip] - 广发证券 - 另类交易策略之十四 经验模态分解下的日内趋势交易策略

[ta-lib-0.4.0-src.tar.gz] - 股票主要技术指标源码,非常有用,且内部有示例,金融开发必不可少

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Bootstrap中,可以通过自定义CSS来将.carousel-indicators中的小方块改成圆点。 以下是一种实现方法: 1. 首先,将.carousel-indicators的样式设置为圆点,并将其子元素(即小方块)的样式设置为圆点的样式。可以使用以下CSS代码实现: ``` .carousel-indicators { bottom: 10px; } .carousel-indicators li { border-radius: 50%; width: 12px; height: 12px; margin: 0 8px; } .carousel-indicators .active { background-color: #000; } ``` 2. 然后,将轮播组件中的指示器(indicators)的class属性设置为.carousel-indicators即可。 例如,以下是一个带有圆点指示器的轮播组件的HTML代码: ``` <div id="myCarousel" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="carousel-indicators"> <li data-target="#myCarousel" data-slide-to="0" class="active"></li> <li data-target="#myCarousel" data-slide-to="1"></li> <li data-target="#myCarousel" data-slide-to="2"></li> </ol> <!-- Slides --> <div class="carousel-inner"> <div class="item active"> <img src="slide1.jpg" alt="Slide 1"> </div> <div class="item"> <img src="slide2.jpg" alt="Slide 2"> </div> <div class="item"> <img src="slide3.jpg" alt="Slide 3"> </div> </div> <!-- Controls --> <a class="left carousel-control" href="#myCarousel" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#myCarousel" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> <span class="sr-only">Next</span> </a> </div> ``` 这样,你就可以将轮播组件中的小方块指示器改为圆点了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值