PROREALTIME INDICATOR

Created at 11 Apr 2015, 09:17
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
CU

cuchufletozopo

Joined 05.04.2015

PROREALTIME INDICATOR
11 Apr 2015, 09:17


Este es el indicador de proealtime que me gustaría convertir a C#
aprovecho para deciros que he tenido que abrir un nuevo tema porque no me deja contestar el ya abierto, o por lo menos no se.
Muchas gracias por la ayuda
// DOBLES BANDAS DE BOLLINGER

med = ExponentialAverage[20](close)

dst = STD[20](close)

bes = med + (2 * dst)
bei = med - (2 * dst)

bis = med + (1 * dst)
bii = med - (1 * dst)


RETURN med COLOURED(204,153,255) as "Med", bes COLOURED(204,102,255) AS "Ext Sup", bei COLOURED(204,102,255) AS "Ext Inf", bis COLOURED(204,153,255) as "Int Sup", bii COLOURED(204,153,255) as "Int Inf"

 


@cuchufletozopo