Skip to content

Commit

Permalink
Fix name typos of CdlStickSandwich
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederisk committed Jan 22, 2024
1 parent 199d05b commit 477c3eb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/ta_abstract/ta_java_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@
#define TA_CDLSPINNINGTOP cdlSpinningTop
#define TA_CDLSTALLEDPATTERN_Lookback cdlStalledPatternLookback
#define TA_CDLSTALLEDPATTERN cdlStalledPattern
#define TA_CDLSTICKSANDWICH_Lookback cdlStickSandwhichLookback
#define TA_CDLSTICKSANDWICH cdlStickSandwhich
#define TA_CDLSTICKSANDWICH_Lookback cdlStickSandwichLookback
#define TA_CDLSTICKSANDWICH cdlStickSandwich
#define TA_CDLTAKURI_Lookback cdlTakuriLookback
#define TA_CDLTAKURI cdlTakuri
#define TA_CDLTASUKIGAP_Lookback cdlTasukiGapLookback
Expand Down
2 changes: 1 addition & 1 deletion src/ta_abstract/tables/table_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -1535,7 +1535,7 @@ static const TA_OptInputParameterInfo *TA_CDLSTICKSANDWICH_OptInputs[] =
DEF_FUNCTION( CDLSTICKSANDWICH, /* name */
TA_GroupId_PatternRecognition, /* groupId */
"Stick Sandwich", /* hint */
"CdlStickSandwhich", /* CamelCase name */
"CdlStickSandwich", /* CamelCase name */
TA_FUNC_FLG_CANDLESTICK /* flags */
);

Expand Down
17 changes: 8 additions & 9 deletions src/ta_func/ta_CDLSTICKSANDWICH.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@
/* Generated */ #define INPUT_TYPE double
/* Generated */
/* Generated */ #if defined( _MANAGED )
/* Generated */ int Core::CdlStickSandwhichLookback( void )
/* Generated */ int Core::CdlStickSandwichLookback( void )
/* Generated */
/* Generated */ #elif defined( _JAVA )
/* Generated */ public int cdlStickSandwhichLookback( )
/* Generated */ public int cdlStickSandwichLookback( )
/* Generated */
/* Generated */ #else
/* Generated */ TA_LIB_API int TA_CDLSTICKSANDWICH_Lookback( void )
Expand Down Expand Up @@ -109,7 +109,7 @@
*/
/* Generated */
/* Generated */ #if defined( _MANAGED ) && defined( USE_SUBARRAY )
/* Generated */ enum class Core::RetCode Core::CdlStickSandwhich( int startIdx,
/* Generated */ enum class Core::RetCode Core::CdlStickSandwich( int startIdx,
/* Generated */ int endIdx,
/* Generated */ SubArray<double>^ inOpen,
/* Generated */ SubArray<double>^ inHigh,
Expand All @@ -119,7 +119,7 @@
/* Generated */ [Out]int% outNBElement,
/* Generated */ SubArray<int>^ outInteger )
/* Generated */ #elif defined( _MANAGED )
/* Generated */ enum class Core::RetCode Core::CdlStickSandwhich( int startIdx,
/* Generated */ enum class Core::RetCode Core::CdlStickSandwich( int startIdx,
/* Generated */ int endIdx,
/* Generated */ cli::array<double>^ inOpen,
/* Generated */ cli::array<double>^ inHigh,
Expand All @@ -129,7 +129,7 @@
/* Generated */ [Out]int% outNBElement,
/* Generated */ cli::array<int>^ outInteger )
/* Generated */ #elif defined( _JAVA )
/* Generated */ public RetCode cdlStickSandwhich( int startIdx,
/* Generated */ public RetCode cdlStickSandwich( int startIdx,
/* Generated */ int endIdx,
/* Generated */ double inOpen[],
/* Generated */ double inHigh[],
Expand Down Expand Up @@ -261,7 +261,7 @@
/* Generated */ #undef INPUT_TYPE
/* Generated */ #define INPUT_TYPE float
/* Generated */ #if defined( _MANAGED ) && defined( USE_SUBARRAY )
/* Generated */ enum class Core::RetCode Core::CdlStickSandwhich( int startIdx,
/* Generated */ enum class Core::RetCode Core::CdlStickSandwich( int startIdx,
/* Generated */ int endIdx,
/* Generated */ SubArray<float>^ inOpen,
/* Generated */ SubArray<float>^ inHigh,
Expand All @@ -271,7 +271,7 @@
/* Generated */ [Out]int% outNBElement,
/* Generated */ SubArray<int>^ outInteger )
/* Generated */ #elif defined( _MANAGED )
/* Generated */ enum class Core::RetCode Core::CdlStickSandwhich( int startIdx,
/* Generated */ enum class Core::RetCode Core::CdlStickSandwich( int startIdx,
/* Generated */ int endIdx,
/* Generated */ cli::array<float>^ inOpen,
/* Generated */ cli::array<float>^ inHigh,
Expand All @@ -281,7 +281,7 @@
/* Generated */ [Out]int% outNBElement,
/* Generated */ cli::array<int>^ outInteger )
/* Generated */ #elif defined( _JAVA )
/* Generated */ public RetCode cdlStickSandwhich( int startIdx,
/* Generated */ public RetCode cdlStickSandwich( int startIdx,
/* Generated */ int endIdx,
/* Generated */ float inOpen[],
/* Generated */ float inHigh[],
Expand Down Expand Up @@ -361,4 +361,3 @@
/* Generated */ }}} // Close namespace TicTacTec.TA.Lib
/* Generated */ #endif
/**** END GENCODE SECTION 5 - DO NOT DELETE THIS LINE ****/

0 comments on commit 477c3eb

Please sign in to comment.