trend indicator

 
Hello, i have easy trend indicator. ( attached picture ) It only write sell/buy signal does not make auto trading.  Is there a way to make it auto ?Best
Files:
indi.png  121 kb
 
An indicator itself cannot execute trades. It only provides signals.

To make it auto trading, you need to create an Expert Advisor (EA) that reads signals from the indicator.

You can do this by:
- Using iCustom() to get indicator values
- Detecting buy/sell signal conditions
- Executing trades using OrderSend / CTrade

Alternatively, you can modify the indicator logic and convert it into an EA.

In general, indicator = signal, EA = execution.
 
Nattanan Ekeda #:
An indicator itself cannot execute trades. It only provides signals.

To make it auto trading, you need to create an Expert Advisor (EA) that reads signals from the indicator.

You can do this by:
- Using iCustom() to get indicator values
- Detecting buy/sell signal conditions
- Executing trades using OrderSend / CTrade

Alternatively, you can modify the indicator logic and convert it into an EA.

In general, indicator = signal, EA = execution.
tnx