Calling custom indicators (Super Trend)

 
Hi im wondering how I would go about calling a super trend indicator. Beneath is the code I have, im not sure how to set the parameters timeframe, period, and multiplier. When I put the corresponding numbers i get the error - name expected. Any help is much appreciated.   
double SuperT = iCustom = (NULL, 0, "\\Indicators\\Super_Trend.mq4", )
 
Tiberious:
Hi im wondering how I would go about calling a super trend indicator. Beneath is the code I have, im not sure how to set the parameters timeframe, period, and multiplier. When I put the corresponding numbers i get the error - name expected. Any help is much appreciated.   

Read the documentation on iCustom.

 
Tiberious:
Hi im wondering how I would go about calling a super trend indicator. Beneath is the code I have, im not sure how to set the parameters timeframe, period, and multiplier. When I put the corresponding numbers i get the error - name expected. Any help is much appreciated.   
// I think this is solution;



double superTrend ()

{

        double superTrend = iCustom(_Symbol,_Period,"Super_Trend",PRICE_CLOSE,0,0);

return superTrend;

}