Current location - Trademark Inquiry Complete Network - Futures platform - Tong Daxin dkx trading stock selection formula
Tong Daxin dkx trading stock selection formula
Communication letter DKX multi-space line (system) Communication letter system's own indicators, DKX's own indicators are sub-maps, in order to facilitate your understanding, change to the main map and increase stock selection. (Note: If in doubt, ask the boss of Tong Daxin yourself. )

DKX multi-line source code consists of the following parts:

MID:=(3* closing price+lowest price+opening price+highest price)/6;

DKX:(20*MID+ 19* forward reference (MID, 1)+ 18* forward reference (MID, 2)+ 17* forward reference (MID, 3)+10.

In fact, in hindsight, DKX indicator is a very accurate indicator, because DKX indicator is not affected by short-term fluctuations, and the lag is certain.

DKX indicator is actually a "beautiful-looking" indicator, but it is difficult to grasp the timing of its application.

Multi-line main map source code:

MID:=(3 * close+low open+high open)/6;

DKX:=(20*MID+ 19*REF(MID, 1)+ 18*REF(MID,2)+ 17*REF(MID,3)+

16*REF(MID,4)+ 15*REF(MID,5)+ 14*REF(MID,6)+

13*REF(MID,7)+ 12*REF(MID,8)+ 1 1*REF(MID,9)+

10*REF(MID, 10)+9*REF(MID, 1 1)+8*REF(MID, 12)+

7*REF(MID, 13)+6*REF(MID, 14)+5*REF(MID, 15)+

4*REF(MID, 16)+3*REF(MID, 17)+2*REF(MID, 18)+REF(MID,20))/2 10;

MADKX: Ma (DKX, 10), DOTLINE

IF((MADKX & gt; =REF(MADKX, 1))、MADKX、DRAWNULL)、LINETHICK2、COLORMAGENTA

IF((MADKX & lt; =REF(MADKX, 1))、MADKX、DRAWNULL)、LINETHICK2、COLORGREEN

Stock selection: = CLOSE & gt=DKX? And CROSS(DKX, madkx);

DRAWICON (stock selection, l * 0.96,30);

Source code of stock selection formula:

MID:=(3 * close+low open+high open)/6;

DKX:=(20*MID+ 19*REF(MID, 1)+ 18*REF(MID,2)+ 17*REF(MID,3)+

16*REF(MID,4)+ 15*REF(MID,5)+ 14*REF(MID,6)+

13*REF(MID,7)+ 12*REF(MID,8)+ 1 1*REF(MID,9)+

10*REF(MID, 10)+9*REF(MID, 1 1)+8*REF(MID, 12)+

7*REF(MID, 13)+6*REF(MID, 14)+5*REF(MID, 15)+

4*REF(MID, 16)+3*REF(MID, 17)+2*REF(MID, 18)+REF(MID,20))/2 10;

MADKX:=MA(DKX, 10);

Stock selection: closing & gt=DKX? And CROSS(DKX, madkx);