+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Know Sure Thing

Know Sure Thing (KST) is an AmiBroker AFL designed to detect market trends and momentum changes. Leveraging AmiBroker data feed, it assists traders in identifying potential entry and exit points.

/
//
//  Daily, Short-time Know Sure Thing indicator. This is smoothed version of
//  classical rate-of-change indicator.
//
//------------------------------------------------------------------------------

/*
** Daily, Short term KST 
** AFL formula by Tomasz Janeczko 
*/

p1 = MA( ROC(Close,10), 10);
p2 = MA( ROC( Close, 15), 10 );
p3 = MA( ROC( Close, 20), 10 ) ;
p4 = MA( ROC( Close, 30), 15);

kst = p1 + 2 * p2 + 3 * p3 + 4 * p4;
 
Graph0 = kst / 10;
  

Open chat
1
Hi, how can I help you?