Attachments forums

List of attachments posted on this forum.


All files on forums: 135975

Re: Various (Specialist) indicators for MT4

Chickenspicy, Tue Jul 12, 2022 3:50 am

this ak trend indicator is the mcginley dynamic macd or know sure thing indicator i believe, better accuracy then rsi and macd
could someone translate please thank you



study("AK TREND")

input1 = input(10)
input2 = input(50),

fastmaa = ema(close,input1)
fastmab = ema(close,input2)

bspread = (fastmaa-fastmab)*1.001

adline = 0

m = bspread > 0 ? lime : red

plot (adline,color = white)
plot(bspread, color = m, linewidth=4)
barcolor( bspread > 0 ? lime :red)
All files in topic