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)
1K views
1 page
1111 - C
Uploaded by
ammsna10
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 1111 - C Copy For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
1K views
1 page
1111 - C
Uploaded by
ammsna10
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 1111 - C Copy For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save 1111 - C Copy For Later
You are on page 1
/ 1
Search
Fullscreen
//@version=5
indicator('GainzAlgo Pro4', overlay=true, max_labels_count=500)
candle_stability_index_param = input.float(0.5, 'Candle Stability Index', 0,
1,step=0.1, group='Technical', tooltip='Candle Stability Index measures the
ratiobetween the body and the wicks of a candle. Higher - more stable.')
rsi_index_param = input.int(50, 'RSI Index', 0, 100, group='Technical',tooltip='RSI
Index measures how overbought/oversold is the market. Higher -
moreoverbought/oversold.')
candle_delta_length_param = input.int(5, 'Candle Delta Length',
3,group='Technical', tooltip='Candle Delta Length measures the period over how
manycandles the price increased/decreased. Higher - longer period.')
disable_repeating_signals_param = input.bool(false, 'Disable Repeating
Signals',group='Technical', tooltip='Removes repeating signals. Useful for removing
clustersof signals and general clarity')
GREEN = color.rgb(29, 255, 40)
RED = color.rgb(255, 0, 0)
TRANSPARENT = color.rgb(0, 0, 0, 100)
label_size = input.string('normal', 'Label Size', options=['huge',
'large','normal', 'small', 'tiny'], group='Cosmetic')
label_style = input.string('text bubble', 'Label Style', ['text bubble','triangle',
'arrow'], group='Cosmetic')
buy_label_color = input(GREEN, 'BUY Label Color',
inline='Highlight',group='Cosmetic')
sell_label_color = input(RED, 'SELL Label Color',
inline='Highlight',group='Cosmetic')
label_text_color = input(color.white, 'Label Text Color',
inline='Highlight',group='Cosmetic')
stable_candle = math.abs(close - open) / ta.tr > candle_stability_index_paramrsi
bullish_engulfing = close[1] < open[1] and close > open and close > open[1]
rsi_below = rsi < rsi_index_paramdecrease_over close <
close[candle_delta_length_param]bull = bullish_engulfing and stable_candle and
rsi_below and decrease_over andbarstate.isconfirmedbearish_engulfing = close[1] >
open[1] and close < open and close < open[1]rsi_above = rsi > 100 -
rsi_index_paramincrease_over = close > close[candle_delta_length_param]bear =
bearish_engulfing and stable_candle and rsi_above and increase_over
andbarstate.isconfirmedvar last_signal = ''if bull and
(disable_repeating_signals_param ? (last_signal != 'buy' ? true : na) :true) if
label_style == 'text bubble' label.new(bull ? bar_index : na, low, 'BUY',
color=buy_label_color,style=label.style_label_up, textcolor=label_text_color,
size=label_size) else if label_style == 'triangle'
label.new(bull ? bar_index : na, low, 'BUY',
yloc=yloc.belowbar,color=buy_label_color, style=label.style_triangleup,
textcolor=TRANSPARENT,size=label_size) else if label_style == 'arrow'
label.new(bull ? bar_index : na, low, 'BUY',
yloc=yloc.belowbar,color=buy_label_color, style=label.style_arrowup,
textcolor=TRANSPARENT,size=label_size) last_signal := 'buy'if bear and
(disable_repeating_signals_param ? (last_signal != 'sell' ? true :na) : true) if
label_style == 'text bubble' label.new(bear ? bar_index : na, high, 'SELL',
color=sell_label_color,style=label.style_label_down, textcolor=label_text_color,
size=label_size) else if label_style == 'triangle' label.new(bear ? bar_index : na,
high, 'SELL', yloc=yloc.abovebar,color=sell_label_color,
style=label.style_triangledown, textcolor=TRANSPARENT,size=label_size) else if
label_style == 'arrow' label.new(bear ? bar_index : na, high, 'SELL',
yloc=yloc.abovebar,color=sell_label_color, style=label.style_arrowdown,
textcolor=TRANSPARENT,size=label_size) last_signal := 'sell'alertcondition(bull,
'BUY Signals', 'New signal: BUY')alertcondition(bear, 'SELL Signals', 'New signal:
SELL')
You might also like
Strategy ALGOX by Leo
PDF
0% (1)
Strategy ALGOX by Leo
31 pages
Sniper Entry Pro
PDF
100% (1)
Sniper Entry Pro
11 pages
Script
PDF
No ratings yet
Script
2 pages
Profit Pulse Pro
PDF
No ratings yet
Profit Pulse Pro
32 pages
Script Reversal
PDF
No ratings yet
Script Reversal
2 pages
Algox v13
PDF
No ratings yet
Algox v13
22 pages
Price Action Toolkit
PDF
No ratings yet
Price Action Toolkit
59 pages
(BigBeluga) & CPR
PDF
No ratings yet
(BigBeluga) & CPR
46 pages
@version 5
PDF
No ratings yet
@version 5
5 pages
Best Smart Trail Algo V.1.2
PDF
No ratings yet
Best Smart Trail Algo V.1.2
35 pages
Pro v3
PDF
100% (1)
Pro v3
23 pages
(Screener) ICT Retracement To Order Block With Screener
PDF
No ratings yet
(Screener) ICT Retracement To Order Block With Screener
10 pages
v0.65 Money Moves Premium Algo V2
PDF
No ratings yet
v0.65 Money Moves Premium Algo V2
24 pages
The Real-Gains Algo 2.5 Final
PDF
No ratings yet
The Real-Gains Algo 2.5 Final
18 pages
Luxalgo Oscillator Matrix
PDF
100% (1)
Luxalgo Oscillator Matrix
38 pages
Smart Money Concepts Plus
PDF
No ratings yet
Smart Money Concepts Plus
58 pages
Indicator Kamal V2 For TradingView
PDF
No ratings yet
Indicator Kamal V2 For TradingView
2 pages
Fibonacci Ranges (Real-Time) (LuxAlgo)
PDF
No ratings yet
Fibonacci Ranges (Real-Time) (LuxAlgo)
7 pages
AlgoPoint Signals Overlay
PDF
No ratings yet
AlgoPoint Signals Overlay
36 pages
Elite Algo - AlgoPoint Remake Series
PDF
No ratings yet
Elite Algo - AlgoPoint Remake Series
30 pages
Aura Superalgo
PDF
No ratings yet
Aura Superalgo
21 pages
LUXALGO - Signals & Overlays
PDF
No ratings yet
LUXALGO - Signals & Overlays
35 pages
Trend Exhaustion
PDF
No ratings yet
Trend Exhaustion
2 pages
Super Algo
PDF
No ratings yet
Super Algo
5 pages
ALGO EXTREMEP Profit Crypto
PDF
No ratings yet
ALGO EXTREMEP Profit Crypto
22 pages
Bugs-Fixed Public Code
PDF
No ratings yet
Bugs-Fixed Public Code
22 pages
Oscillator Vision
PDF
No ratings yet
Oscillator Vision
8 pages
Money Move
PDF
No ratings yet
Money Move
14 pages
SAB PRO Pivot Master@free - FX - Pro
PDF
No ratings yet
SAB PRO Pivot Master@free - FX - Pro
24 pages
Signals & Overlays
PDF
No ratings yet
Signals & Overlays
30 pages
Asce 7-22 CH 01 - For PC
PDF
100% (2)
Asce 7-22 CH 01 - For PC
17 pages
Buy and Sell Indicator
PDF
No ratings yet
Buy and Sell Indicator
9 pages
Joker
PDF
No ratings yet
Joker
16 pages
v1.5.3 Price Action ICT Toolkit-2
PDF
No ratings yet
v1.5.3 Price Action ICT Toolkit-2
65 pages
Signals Overlayst Fixed
PDF
No ratings yet
Signals Overlayst Fixed
31 pages
N Bar Reversal Detector (LuxAlgo)
PDF
No ratings yet
N Bar Reversal Detector (LuxAlgo)
7 pages
Algo Huge Profit 1
PDF
No ratings yet
Algo Huge Profit 1
15 pages
Sniper Script
PDF
No ratings yet
Sniper Script
7 pages
Reversal Strategy V0.1
PDF
No ratings yet
Reversal Strategy V0.1
18 pages
Ultraalgo
PDF
No ratings yet
Ultraalgo
5 pages
Bedroom Algo
PDF
No ratings yet
Bedroom Algo
2 pages
Ud 3 Dy USp 1
PDF
No ratings yet
Ud 3 Dy USp 1
25 pages
Oscillator Matrix With Alerts
PDF
No ratings yet
Oscillator Matrix With Alerts
14 pages
AlgoPoint Reversal Finder
PDF
No ratings yet
AlgoPoint Reversal Finder
34 pages
Bursa
PDF
No ratings yet
Bursa
3 pages
General Systems Theory
PDF
100% (1)
General Systems Theory
7 pages
BankNifty 365
PDF
No ratings yet
BankNifty 365
8 pages
Luxalgo Session
PDF
No ratings yet
Luxalgo Session
11 pages
Reversal by Luxalgo
PDF
No ratings yet
Reversal by Luxalgo
11 pages
Pinescript
PDF
100% (1)
Pinescript
60 pages
UT Bot + Nadaraya Watson Envelope With Hull Suite TSL + RSI Reversal
PDF
50% (2)
UT Bot + Nadaraya Watson Envelope With Hull Suite TSL + RSI Reversal
4 pages
AlgoPoint Channels
PDF
No ratings yet
AlgoPoint Channels
3 pages
Final Combined Extracted Code
PDF
No ratings yet
Final Combined Extracted Code
2 pages
Nas Infinity Algo (STR)
PDF
No ratings yet
Nas Infinity Algo (STR)
1 page
New Text Document
PDF
No ratings yet
New Text Document
5 pages
Simple Algo v5
PDF
No ratings yet
Simple Algo v5
8 pages
EzAlgo Oscillator
PDF
No ratings yet
EzAlgo Oscillator
1 page
Elite Algo v22
PDF
No ratings yet
Elite Algo v22
16 pages
Script Value Signal
PDF
No ratings yet
Script Value Signal
4 pages
ISI-Entrance Solutions: Economics
PDF
No ratings yet
ISI-Entrance Solutions: Economics
4 pages
BonBO Pro
PDF
No ratings yet
BonBO Pro
2 pages
(Imba) Algo
PDF
No ratings yet
(Imba) Algo
16 pages
Iph750 Hydraulic Piling Hammer and Rig: Impact-Power Hydraulics Sdn. BHD
PDF
100% (1)
Iph750 Hydraulic Piling Hammer and Rig: Impact-Power Hydraulics Sdn. BHD
4 pages
Unit-1 Lesson 1
PDF
No ratings yet
Unit-1 Lesson 1
10 pages
KENZA MAX Biochemistry: Compliance
PDF
No ratings yet
KENZA MAX Biochemistry: Compliance
43 pages
Doherty Power Amplifier For 5G Systems
PDF
No ratings yet
Doherty Power Amplifier For 5G Systems
25 pages
Solar Greenhouse Construction and Operation by Rick Fisher
PDF
100% (1)
Solar Greenhouse Construction and Operation by Rick Fisher
166 pages
Measuring Vibration DT9837 MATLAB
PDF
No ratings yet
Measuring Vibration DT9837 MATLAB
4 pages
Text
PDF
No ratings yet
Text
1 page
CBI245A Data Sheet - R27-D
PDF
No ratings yet
CBI245A Data Sheet - R27-D
1 page
Extraction Process in The Ethanol Produc PDF
PDF
No ratings yet
Extraction Process in The Ethanol Produc PDF
7 pages
Deh-P4180sd crt4248
PDF
No ratings yet
Deh-P4180sd crt4248
83 pages
Sand FM Details
PDF
100% (1)
Sand FM Details
1 page
CE600E - V2.2-Duplex Continues Rectification
PDF
No ratings yet
CE600E - V2.2-Duplex Continues Rectification
132 pages
Lavalle Planning
PDF
No ratings yet
Lavalle Planning
121 pages
This Kit Contains
PDF
No ratings yet
This Kit Contains
1 page
Item #: D51L29, D51Z29, D51B29 Assembly Instructions
PDF
No ratings yet
Item #: D51L29, D51Z29, D51B29 Assembly Instructions
10 pages
Apoorva Nandakumar Resume PDF
PDF
No ratings yet
Apoorva Nandakumar Resume PDF
2 pages
Conference
PDF
No ratings yet
Conference
7 pages
Morris 2014
PDF
No ratings yet
Morris 2014
11 pages
The Theory of Space Time Warping
PDF
No ratings yet
The Theory of Space Time Warping
9 pages
2.003J/1.053J Dynamics and Control I Fall 2007 Problem Set 4
PDF
No ratings yet
2.003J/1.053J Dynamics and Control I Fall 2007 Problem Set 4
4 pages
Selected Problems in The Theory of Classical Cellular Automata
PDF
No ratings yet
Selected Problems in The Theory of Classical Cellular Automata
410 pages
Aenexz Tech Data Science Curriculum 8 Weeks
PDF
No ratings yet
Aenexz Tech Data Science Curriculum 8 Weeks
8 pages
Correct Solution For Dominator Task From Codility Johnnyjavago Java Passion Coding - HTM
PDF
No ratings yet
Correct Solution For Dominator Task From Codility Johnnyjavago Java Passion Coding - HTM
14 pages
Hyperbola
PDF
No ratings yet
Hyperbola
2 pages
Science
PDF
No ratings yet
Science
4 pages
Caotic Mechanics Maxima
PDF
No ratings yet
Caotic Mechanics Maxima
25 pages
0 1 App Log
PDF
No ratings yet
0 1 App Log
13 pages
Assignment EE5179 ME20B145 Report
PDF
No ratings yet
Assignment EE5179 ME20B145 Report
6 pages