Import Indicator
-
buy-sell.ex5
Hello
Does any body know how to add the buffer and parameter of this indicator to fx dreema ???
I have problem with "Smoothing Method" and "Price" Part . -
What do you mean exactly? explain what you have done so far.
-
Hello Sir .
I mean how can I add the red parts in to fx dreema .

-
Because of this file is .ex5 I don’t know how to fill the input parameters .
-
@sajadhmz-vp-phd it looks like you're trying to get fxDreema to read the indicator. To do this correctly, you need to set the data types appropriately. In your case, they would be something like this:

For more details on configuring indicators in fxDreema, you might find this documentation helpful: fxdreema.com/documentation/builder/indicators
Pay special attention to the data types section. It's crucial to use the correct data types and avoid changing the values and names from the indicator. This ensures fxDreema can detect the buffers and data values accurately.
Here are the common data types you need to be aware of

int - Numeric type, whole integer numbers, for example 3
double - Numeric type, floating point numbers, for example 3.654
bool - Boolean type, either true or false
string - A text, for example "Hello, World"
datetime - Numeric type, it is in fact an integer value, but it is accepted to use this data type for time parameters
color - Numeric type, also an integer value, but designed to describe colors -
It wouldn't be bool because any other text than true/false would fail, the enum type appears to be correct, what does this do when you try to add?