TS8 EasyLanguage doji definition?

tobbe

Newbie
Messages
2
Likes
0
Any kind soul out there have the time to look up doji in the TS8 help?

I'm studying a system written in EasyLanguage, but I'm not a TS user myself. The code calls the doji function like this:
Code:
if doji(10) then { ... }
I know what doji is, but since there are several ways to calculate it I would like to know the exact TS definition of this (how it's calculated by TS and what the parameter "10" is for). This information is supposedly included in the TS8 help, from within the program. Anyone have time to take a look?

thanks,
tobbe
 
Below is the definition of the Doji show me indicator from Tradestation:


C_Doji (ShowMe)
Disclaimer

Doji

C_Doji displays the Japanese Candlestick pattern; Doji

Doji is defined as:

The body of the candle is very small; the close is equal or almost equal to the open by some percent of the range of the bar. Seen as a cross on the chart.

Input Information
Name
Default Description

Percent
5
Doji threshold for the (open - close) as a percent of the range of the bar


Description
Doji patterns can be some of the most important individual patterns when used with other candlestick patterns.

Plots
Doji plots on the Close when true for the current bar.





The (10) means 10% .

Hope this helps.

Blu-Ray
 
Blu-Ray said:
Below is the definition of the Doji show me indicator from Tradestation:

Thanks Blu-Ray :) !

It was all the info I needed. I have been looking for it for some time, so I really appreciate your help.
 
Top