Hi all,
Very newbie question, I am using a code from the Amibroker Library, and I get stuck there:
doji=CdDoji(threshold=0.05);
CdDoji not being a function for me.
I understand I need the candle.dll plugin, and I saw in a post Thomas referenced it as an Amibroker plug in. (I might be totally wrong).
How do I get this plugin?
Thx for your help
This plugin is 32bit so you need 32-bit application to use it. It is included in the ADK (see it on Gitlab) Anyway CdDoji is super simple, you can use this:
function CdDoji( threshold )
{
return abs( Close - Open ) <= threshold * ( High - Low );
}
1 Like
Thanks Tomasz,
I ended up coding it directly as you proposed, but was wondering why I was missing some .dll. I do have a 64bit install.
Thanks for your time