📄 table_h.c
字号:
/* TA-LIB Copyright (c) 1999-2007, Mario Fortier * All rights reserved. * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * - Neither name of author nor the names of its contributors * may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *//********************************************************************* * This file contains only TA functions starting with the letter 'H' * *********************************************************************/#include <stddef.h>#include "ta_abstract.h"#include "ta_def_ui.h"/* Follow the 3 steps defined below for adding a new TA Function to this * file. *//**************************************************************************** * Step 1 - Define here the interface to your TA functions with * the macro DEF_FUNCTION. * ****************************************************************************//* HT_DCPERIOD */static const TA_InputParameterInfo *TA_HT_DCPERIOD_Inputs[] ={ &TA_DEF_UI_Input_Real, NULL};static const TA_OutputParameterInfo *TA_HT_DCPERIOD_Outputs[] ={ &TA_DEF_UI_Output_Real, NULL};static const TA_OptInputParameterInfo *TA_HT_DCPERIOD_OptInputs[] ={ NULL};DEF_FUNCTION( HT_DCPERIOD, /* name */ TA_GroupId_CycleIndicators, /* groupId */ "Hilbert Transform - Dominant Cycle Period", /* hint */ "HtDcPeriod", /* CamelCase name */ TA_FUNC_FLG_UNST_PER /* flags */ );/* HT_DCPERIOD END *//* HT_DCPHASE */static const TA_InputParameterInfo *TA_HT_DCPHASE_Inputs[] ={ &TA_DEF_UI_Input_Real, NULL};static const TA_OutputParameterInfo *TA_HT_DCPHASE_Outputs[] ={ &TA_DEF_UI_Output_Real, NULL};static const TA_OptInputParameterInfo *TA_HT_DCPHASE_OptInputs[] ={ NULL};DEF_FUNCTION( HT_DCPHASE, /* name */ TA_GroupId_CycleIndicators, /* groupId */ "Hilbert Transform - Dominant Cycle Phase", /* hint */ "HtDcPhase", /* CamelCase name */ TA_FUNC_FLG_UNST_PER /* flags */ );/* HT_DCPHASE END *//* HT_PHASOR */const TA_OutputParameterInfo TA_DEF_UI_Output_Real_InPhase = { TA_Output_Real, "outInPhase", TA_OUT_LINE };const TA_OutputParameterInfo TA_DEF_UI_Output_Real_Quadrature = { TA_Output_Real, "outQuadrature", TA_OUT_DASH_LINE };static const TA_InputParameterInfo *TA_HT_PHASOR_Inputs[] ={ &TA_DEF_UI_Input_Real, NULL};static const TA_OutputParameterInfo *TA_HT_PHASOR_Outputs[] ={ &TA_DEF_UI_Output_Real_InPhase, &TA_DEF_UI_Output_Real_Quadrature, NULL};static const TA_OptInputParameterInfo *TA_HT_PHASOR_OptInputs[] ={ NULL};DEF_FUNCTION( HT_PHASOR, /* name */ TA_GroupId_CycleIndicators, /* groupId */ "Hilbert Transform - Phasor Components", /* hint */ "HtPhasor", /* CamelCase name */ TA_FUNC_FLG_UNST_PER /* flags */ );/* HT_PHASOR END *//* HT_SINE */const TA_OutputParameterInfo TA_DEF_UI_Output_Real_Sine = { TA_Output_Real, "outSine", TA_OUT_LINE };const TA_OutputParameterInfo TA_DEF_UI_Output_Real_LeadSine = { TA_Output_Real, "outLeadSine", TA_OUT_DASH_LINE };static const TA_InputParameterInfo *TA_HT_SINE_Inputs[] ={ &TA_DEF_UI_Input_Real, NULL};static const TA_OutputParameterInfo *TA_HT_SINE_Outputs[] ={ &TA_DEF_UI_Output_Real_Sine, &TA_DEF_UI_Output_Real_LeadSine, NULL};static const TA_OptInputParameterInfo *TA_HT_SINE_OptInputs[] ={ NULL};DEF_FUNCTION( HT_SINE, /* name */ TA_GroupId_CycleIndicators, /* groupId */ "Hilbert Transform - SineWave", /* hint */ "HtSine", /* CamelCase name */ TA_FUNC_FLG_UNST_PER /* flags */ );/* HT_SINE END *//* HT_TRENDLINE */static const TA_InputParameterInfo *TA_HT_TRENDLINE_Inputs[] ={ &TA_DEF_UI_Input_Real, NULL};static const TA_OutputParameterInfo *TA_HT_TRENDLINE_Outputs[] ={ &TA_DEF_UI_Output_Real, NULL};static const TA_OptInputParameterInfo *TA_HT_TRENDLINE_OptInputs[] ={ NULL};DEF_FUNCTION( HT_TRENDLINE, /* name */ TA_GroupId_OverlapStudies, /* groupId */ "Hilbert Transform - Instantaneous Trendline", /* hint */ "HtTrendline", /* CamelCase name */ TA_FUNC_FLG_UNST_PER|TA_FUNC_FLG_OVERLAP /* flags */ );/* HT_TRENDLINE END *//* HT_TRENDMODE */static const TA_InputParameterInfo *TA_HT_TRENDMODE_Inputs[] ={ &TA_DEF_UI_Input_Real, NULL};static const TA_OutputParameterInfo *TA_HT_TRENDMODE_Outputs[] ={ &TA_DEF_UI_Output_Integer, NULL};static const TA_OptInputParameterInfo *TA_HT_TRENDMODE_OptInputs[] ={ NULL};DEF_FUNCTION( HT_TRENDMODE, /* name */ TA_GroupId_CycleIndicators, /* groupId */ "Hilbert Transform - Trend vs Cycle Mode", /* hint */ "HtTrendMode", /* CamelCase name */ TA_FUNC_FLG_UNST_PER /* flags */ );/* HT_TRENDMODE END *//**************************************************************************** * Step 2 - Add your TA function to the table. * Keep in alphabetical order. Must be NULL terminated. ****************************************************************************/const TA_FuncDef *TA_DEF_TableH[] ={ ADD_TO_TABLE(HT_DCPERIOD), ADD_TO_TABLE(HT_DCPHASE), ADD_TO_TABLE(HT_PHASOR), ADD_TO_TABLE(HT_SINE), ADD_TO_TABLE(HT_TRENDLINE), ADD_TO_TABLE(HT_TRENDMODE), NULL};/* Do not modify the following line. */const unsigned int TA_DEF_TableHSize = ((sizeof(TA_DEF_TableH)/sizeof(TA_FuncDef *))-1);/**************************************************************************** * Step 3 - Make sure "gen_code" is executed for generating all other * source files derived from this one. * You can then re-compile the library as usual and you are done! ****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -