Skip to content

Commit 7c692e7

Browse files
committed
fix missing characters
Signed-off-by: Martin Tang <[email protected]>
1 parent 3e8ff0c commit 7c692e7

File tree

5 files changed

+10
-14
lines changed

5 files changed

+10
-14
lines changed

CCentroid.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,4 +188,3 @@ bool CCentroid::PushLow(int nIndex, float fValue)
188188

189189
return false;
190190
}
191-

CCentroid.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ struct CCentroid
2424
bool bValid;
2525
int nTop1, nTop2, nBot1, nBot2;
2626
float fTop1, fTop2, fBot1, fBot2;
27-
int nLines;
28-
int nStart, nEnd;
27+
int nLines, nStart, nEnd;
2928
float fHigh, fLow, fPHigh, fPLow;
3029

3130
CCentroid();

FxIndicator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ extern "C" {
3737
DECLSPEC_EXPORT BOOL RegisterTdxFunc(PluginTCalcFuncInfo **pInfo);
3838
#ifdef __cplusplus
3939
};
40-
#endif //__cplusplus
40+
#endif
4141

4242
#pragma pack(pop)
4343
#endif

FxSelector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ DECLSPEC_EXPORT BOOL InputInfoThenCalc2(char * Code,short nSetCode,int Value[4],
248248

249249
#ifdef __cplusplus
250250
};
251-
#endif //__cplusplus
251+
#endif
252252

253253
#pragma pack(pop)
254254
#endif

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,19 @@ DLL:=TDXDLL1(1,H,L,5);
2121
HIB:=TDXDLL1(2,DLL,H,L);
2222
LOB:=TDXDLL1(3,DLL,H,L);
2323
SIG:=TDXDLL1(4,DLL,H,L);
24-
BS1:=TDXDLL1(5,DLL,H,L);
25-
BS2:=TDXDLL1(6,DLL,H,L);
26-
STH:=TDXDLL1(7,DLL,H,L);
24+
BSP:=TDXDLL1(5,DLL,H,L);
2725
SLP:=TDXDLL1(8,DLL,H,L);
2826
IF(HIB,HIB,DRAWNULL), COLORYELLOW;
2927
IF(LOB,LOB,DRAWNULL), COLORYELLOW;
3028
STICKLINE(SIG,LOB,HIB,0,0), COLORYELLOW;
3129
DRAWLINE(DLL=-1,L,DLL=+1,H,0), COLORYELLOW;
3230
DRAWLINE(DLL=+1,H,DLL=-1,L,0), COLORYELLOW;
33-
DRAWNUMBER(DLL=+1,H,STH), COLORYELLOW, DRAWABOVE;
34-
DRAWNUMBER(DLL=-1,L,STH), COLORYELLOW;
35-
BUY(BS1=3,LOW);
36-
SELL(BS1=12,HIGH);
37-
BUYSHORT(BS1=2,LOW);
38-
SELLSHORT(BS1=13,HIGH);
31+
DRAWNUMBER(DLL=+1,H,SLP), COLORYELLOW, DRAWABOVE;
32+
DRAWNUMBER(DLL=-1,L,SLP), COLORYELLOW;
33+
BUY(BSP=3,LOW);
34+
SELL(BSP=12,HIGH);
35+
BUYSHORT(BSP=2,LOW);
36+
SELLSHORT(BSP=13,HIGH);
3937
```
4038

4139
#联系方式

0 commit comments

Comments
 (0)