Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
60 views
2 pages
Newscript
Uploaded by
monicaamala9197
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download
Save
Save newscript For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
60 views
2 pages
Newscript
Uploaded by
monicaamala9197
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save newscript For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 2
Search
Fullscreen
instrument { name = "AM PERFECT WIN", overlay = true }period = input (5,
"front.period", input.integer, 1)shift = input (1, "front.newind.offset",
input.double, 0.01, 300, 0.01)fn = input (averages.ema, "front.newind.average",
input.string_selection, averages.titles)input_group { "front.top line",
upper_line_visible = input { default = true, type = input.plot_visibility },
upper_line_color = input { default = "#ff0000", type = input.color },
upper_line_width = input { default = 1, type = input.line_width }}input_group {
"front.middle line", middle_line_visible = input { default = true, type =
input.plot_visibility }, middle_line_color = input { default = #ffffff, type =
input.color }, middle_line_width = input { default = 1, type =
input.line_width }}input_group { "front.bottom line", lower_line_visible =
input { default = true, type = input.plot_visibility }, lower_line_color =
input { default = "#00FF00", type = input.color }, lower_line_width = input
{ default = 1, type = input.line_width }}input_group { "front.newind.adx.fill",
fill_visible = input { default = true, type = input.plot_visibility },
fill_color = input { default = rgba(138,43,226,0.20), type = input.color },}local
averageFunction = averages [fn]middle = averageFunction (hlc3, period)offset =
rma(tr, period) * shiftupper = middle + offsetlower = middle - offsetif
fill_visible then fill { first = upper, second = lower, color =
fill_color }endif upper_line_visible then plot (upper, "Upper",
upper_line_color, upper_line_width)endif lower_line_visible then plot (lower,
"Lower", lower_line_color, lower_line_width)endif middle_line_visible then plot
(middle, "Middle", middle_line_color, middle_line_width)endinstrument { name =
'msttrading(3.1)', short_name = 'PERFECT', overlay = true}MaFast_period =
input(1,"Ma Fast period",input.integer,1,1000,1)MaValue = input(5,"Ma Value",
input.string_selection,inputs.titles)MaSlow_period = input(34,"Ma Slow
period",input.integer,1,1000,1)Signal_period = input(5,"Signal
period",input.integer,1,1000,1)input_group { "AM BUY", colorBuy = input
{ default = "white", type = input.color }, visibleBuy = input { default = true,
type = input.plot_visibility }}input_group { "AM SELL", colorSell = input
{ default = "red", type = input.color }, visibleSell = input { default = true,
type = input.plot_visibility }}local titleValue = inputs[MaValue]-- mdia mvel
linear rpidasmaFast = sma(titleValue, MaFast_period)-- mdia mvel linear
devagarsmaSlow = sma(titleValue, MaSlow_period)-- calculo diferencial -
seriebuffer1 = smaFast - smaSlow -- clculo da mdia mvel ponderada - seriebuffer2 =
wma(buffer1, Signal_period)buyCondition = conditional(buffer1 > buffer2 and
buffer1[1] < buffer2[1] and not (buffer1 < buffer2 and buffer1[1] >
buffer2[1]))buyCondition = conditional(buffer1 > buffer2 and buffer1[1] <
buffer2[1])sellCondition = conditional(buffer1 < buffer2 and buffer1[1] >
buffer2[1] and not (buffer1 > buffer2 and buffer1[1] < buffer2[1]))sellCondition =
conditional(buffer1 < buffer2 and buffer1[1] > buffer2[1] ) plot_shape(
(buyCondition), "GO", shape_style.triangleup,
shape_size.huge, colorBuy, shape_location.belowbar,
-1, "AM BUY", "white" )
plot_shape( (sellCondition), "GO",
shape_style.triangledown, shape_size.huge, colorSell,
shape_location.abovebar, -1, "AM SELL",
"red" )instrument { name = 'AM PERFECT WIN', short_name = 'PERFECT',
overlay = true}MaFast_period = input(1,"Ma Fast
period",input.integer,1,1000,1)MaValue = input(5,"Ma Value",
input.string_selection,inputs.titles)MaSlow_period = input(34,"Ma Slow
period",input.integer,1,1000,1)Signal_period = input(5,"Signal
period",input.integer,1,1000,1)input_group { "AM BUY", colorBuy = input
{ default = "white", type = input.color }, visibleBuy = input { default = true,
type = input.plot_visibility }}input_group { "AM SELL", colorSell = input
{ default = "red", type = input.color }, visibleSell = input { default = true,
type = input.plot_visibility }}local titleValue = inputs[MaValue]-- mdia mvel
linear rpidasmaFast = sma(titleValue, MaFast_period)-- mdia mvel linear
devagarsmaSlow = sma(titleValue, MaSlow_period)-- calculo diferencial -
seriebuffer1 = smaFast - smaSlow -- clculo da mdia mvel ponderada - seriebuffer2 =
wma(buffer1, Signal_period)buyCondition = conditional(buffer1 > buffer2 and
buffer1[1] < buffer2[1] and not (buffer1 < buffer2 and buffer1[1] >
buffer2[1]))buyCondition = conditional(buffer1 > buffer2 and buffer1[1] <
buffer2[1])sellCondition = conditional(buffer1 < buffer2 and buffer1[1] >
buffer2[1] and not (buffer1 > buffer2 and buffer1[1] < buffer2[1]))sellCondition =
conditional(buffer1 < buffer2 and buffer1[1] > buffer2[1] ) plot_shape(
(buyCondition), "GO", shape_style.triangleup,
shape_size.huge, colorBuy, shape_location.belowbar,
-1, "AM BUY", "white" )
plot_shape( (sellCondition), "GO",
shape_style.triangledown, shape_size.huge, colorSell,
shape_location.abovebar, -1, "AM SELL",
"red" )instrument {name = "msttrading(3.1)", overlay = true}bar_look =
input (3, "Confirmation bars to look", input.integer, 1 )period1 = input (20,
"period Line 1", input.integer, 10 )period2 = input (50, "period Line 2",
input.integer, 10 )period3 = input (80, "period Line 3", input.integer, 10 )period4
= input (120, "period Line 4", input.integer, 10 )period5 = input (150, "period
Line 5", input.integer, 10 )period6 = input (200, "period Line 6", input.integer,
10 )period7 = input (250, "period Line 7", input.integer, 10 )period8 = input (300,
"period Line 8", input.integer, 10 )period9 = input (350, "period Line 9",
input.integer, 10 )period10 = input (400, "period Line 10", input.integer,
10 )input_group { "Color", color = input {default = "orange", type =
input.color}, width = input {default = 1, type =
input.line_width}}hline(highest(high[bar_look], period1), "HH10", color,
width)hline(lowest(low[bar_look], period1), "LL10", color,
width)hline(highest(high[bar_look], period2), "HH10", color,
width)hline(lowest(low[bar_look], period2), "LL10", color,
width)hline(highest(high[bar_look], period3), "HH10", color,
width)hline(lowest(low[bar_look], period3), "LL10", color,
width)hline(highest(high[bar_look], period4), "HH10", color,
width)hline(lowest(low[bar_look], period4), "LL10", color,
width)hline(highest(high[bar_look], period5), "HH10", color,
width)hline(lowest(low[bar_look], period5), "LL10", color,
width)hline(highest(high[bar_look], period6), "HH10", color,
width)hline(lowest(low[bar_look], period6), "LL10", color,
width)hline(highest(high[bar_look], period7), "HH10", color,
width)hline(lowest(low[bar_look], period7), "LL10", color,
width)hline(highest(high[bar_look], period8), "HH10", color,
width)hline(lowest(low[bar_look], period8), "LL10", color,
width)hline(highest(high[bar_look], period9), "HH10", color,
width)hline(lowest(low[bar_look], period9), "LL10", color,
width)hline(highest(high[bar_look], period10), "HH10", color,
width)hline(lowest(low[bar_look], period10), "LL10", color,
width)instrument{name="AM PERFECT WIN", overlay=true}local function a()local
b=make_series()local c=high[2]if not get_value(c)then return b end;local d=high<=c
and high[1]<=c and high[3]<=c and high[4]<=c;b:set(iff(d,c,b[1]))return b end;
local function e()local b=make_series()local c=low[2]if not get_value(c)then return
b end;local d=low>=c and low[1]>=c and low[3]>=c and
low[4]>=c;b:set(iff(d,c,b[1]))return b
end;input_group{"Color",color=input{default="peachpuff",type=input.color},width=inp
ut{default=1,type=input.line_width}}h=a()l=e()hline(h,"High",color,high_width)hline
(l,"Low",color,width)hline(highest(10)[1],"HH10",color,1)hline(lowest(10)
[1],"LL10",color,1)hline(highest(30)[1],"HH30",color,1)hline(lowest(30)
[1],"LL30",color,1)hline(highest(60)[1],"HH60",color,1)hline(lowest(60)
[1],"LL60",color,1)hline(highest(100)[1],"HH100",color,1)hline(lowest(100)
[1],"LL100",color,1)hline(highest(150)[1],"HH150",color,1)hline(lowest(150)
[1],"LL150",color,1)hline(highest(200)[1],"HH200",color,1)hline(lowest(200)
[1],"LL200",color,1)
You might also like
Script Antiloss
PDF
No ratings yet
Script Antiloss
2 pages
Script Purple Winfree
PDF
No ratings yet
Script Purple Winfree
5 pages
90% Win + Suporte e Resistencia
PDF
100% (2)
90% Win + Suporte e Resistencia
4 pages
Etm Profit
PDF
No ratings yet
Etm Profit
2 pages
Fluxo de Vela
PDF
100% (1)
Fluxo de Vela
2 pages
Script GO
PDF
0% (1)
Script GO
7 pages
Script 90%
PDF
No ratings yet
Script 90%
4 pages
Script Timelytrading
PDF
No ratings yet
Script Timelytrading
5 pages
1.PurpleWin Script
PDF
No ratings yet
1.PurpleWin Script
5 pages
Compra Venta
PDF
No ratings yet
Compra Venta
4 pages
Script Mike
PDF
No ratings yet
Script Mike
5 pages
CHAT GPT (Full - Ver)
PDF
No ratings yet
CHAT GPT (Full - Ver)
4 pages
Best Indicador
PDF
No ratings yet
Best Indicador
3 pages
TINCHO
PDF
No ratings yet
TINCHO
2 pages
SCRIPTS
PDF
No ratings yet
SCRIPTS
12 pages
Call (Compra) e Put (Venda)
PDF
No ratings yet
Call (Compra) e Put (Venda)
2 pages
Trailing Stops
PDF
No ratings yet
Trailing Stops
5 pages
1 5107577951671550583
PDF
No ratings yet
1 5107577951671550583
2 pages
Script Go V.J.
PDF
No ratings yet
Script Go V.J.
2 pages
Script Rayo
PDF
No ratings yet
Script Rayo
7 pages
+sniper 1 - @marcelo - Lcampos
PDF
No ratings yet
+sniper 1 - @marcelo - Lcampos
2 pages
Rei Das Options
PDF
No ratings yet
Rei Das Options
2 pages
Script Purple Win 150$ Free - Gratis Telegram @comunidadgratis
PDF
100% (1)
Script Purple Win 150$ Free - Gratis Telegram @comunidadgratis
5 pages
Newscript
PDF
No ratings yet
Newscript
9 pages
Cdigo Russo Chins 2.0
PDF
No ratings yet
Cdigo Russo Chins 2.0
4 pages
Sinais 2025
PDF
No ratings yet
Sinais 2025
7 pages
Script Faz
PDF
No ratings yet
Script Faz
6 pages
Power Bear - Script
PDF
No ratings yet
Power Bear - Script
7 pages
Premium X
PDF
100% (1)
Premium X
7 pages
17266342985814 อิดิเคเตอร์
PDF
100% (1)
17266342985814 อิดิเคเตอร์
7 pages
Sam - Super Signals
PDF
100% (2)
Sam - Super Signals
7 pages
09 - Cruzamento 2024
PDF
No ratings yet
09 - Cruzamento 2024
7 pages
90% Win
PDF
No ratings yet
90% Win
4 pages
xr1 Script
PDF
No ratings yet
xr1 Script
8 pages
Newscript
PDF
No ratings yet
Newscript
7 pages
SANTO GRIAL @indicatorsmt5mt4
PDF
No ratings yet
SANTO GRIAL @indicatorsmt5mt4
5 pages
New Script
PDF
No ratings yet
New Script
1 page
Bear Sup Rest
PDF
No ratings yet
Bear Sup Rest
8 pages
One Nillion 6.0
PDF
No ratings yet
One Nillion 6.0
7 pages
Salmon Script
PDF
No ratings yet
Salmon Script
2 pages
SCRIPT WIN - @marcelo - Lcampos
PDF
No ratings yet
SCRIPT WIN - @marcelo - Lcampos
7 pages
Indicador Iq
PDF
No ratings yet
Indicador Iq
4 pages
XS Trade
PDF
No ratings yet
XS Trade
5 pages
Italy Script
PDF
No ratings yet
Italy Script
5 pages
Script S.G El Mejor
PDF
100% (1)
Script S.G El Mejor
6 pages
Maquina Milionária Moderada
PDF
No ratings yet
Maquina Milionária Moderada
7 pages
Script 90%
PDF
No ratings yet
Script 90%
4 pages
Script 90%
PDF
No ratings yet
Script 90%
4 pages
Sxript Axx Full
PDF
No ratings yet
Sxript Axx Full
7 pages
SCRIPT Forhad-2023-2024
PDF
No ratings yet
SCRIPT Forhad-2023-2024
14 pages
Pegasus @rzimtrader
PDF
No ratings yet
Pegasus @rzimtrader
3 pages
@carolinarozendo
PDF
No ratings yet
@carolinarozendo
4 pages
Script Foda
PDF
No ratings yet
Script Foda
4 pages
Cópia de Uilian Script - R1
PDF
No ratings yet
Cópia de Uilian Script - R1
7 pages
Coringa Force - 1
PDF
No ratings yet
Coringa Force - 1
7 pages
Sobe Desce
PDF
No ratings yet
Sobe Desce
7 pages
Script 90% Win
PDF
No ratings yet
Script 90% Win
4 pages
Future Script
PDF
No ratings yet
Future Script
3 pages
Python For Beginners
From Everand
Python For Beginners
Célio Azevedo
No ratings yet
No Ph.D. Game Design With Three.js
From Everand
No Ph.D. Game Design With Three.js
Nikiforos Kontopoulos
No ratings yet