• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 4:31am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 4:31am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

How to program the std indicator to take to take price from other indicator windows 0 replies

Indicator of the indicator 11 replies

Adding an indicator to an indicator 10 replies

Indicator/Trendline Pips indicator 2 replies

add indicator to an Indicator 4 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 4,513
Attachments: Indicator Bank
Exit Attachments
Tags: Indicator Bank
Cancel

Indicator Bank

  • Last Post
  •  
  • 1 4647Page 484950 82
  • 1 47Page 4849 82
  •  
  • Post #941
  • Quote
  • Jan 28, 2020 4:04am Jan 28, 2020 4:04am
  •  francisfree
  • | Joined Jan 2020 | Status: Member | 233 Posts
Hello traders can anyone give me indicator like attached one
Attached Image (click to enlarge)
Click to Enlarge

Name: photo6147868882904394040.jpg
Size: 55 KB
 
 
  • Post #942
  • Quote
  • Feb 1, 2020 5:21am Feb 1, 2020 5:21am
  •  lehohonolo
  • | Joined Feb 2020 | Status: Member | 6 Posts
Quoting johncrichton
Disliked
Hello everyone, before I start I apologize for my English level ... I hope you can understand me I attached some screenshots of a strategy that I find very interesting ... I do not know the indicator with the arrows in red and blue, to see if someone knows and can share it here the yellow arrows are from the fiddy -tma & cloud as seen in the top of the screenshots, I downloaded it but it asks for a .dll and I do not have it to work, if someone has it and it works it could share it with the. dll asking what I said would interest me the indicator...
Ignored


please can u send the indicator that shows the bullish and bearish engulfing signals...please
 
 
  • Post #943
  • Quote
  • Feb 17, 2020 6:35am Feb 17, 2020 6:35am
  •  francisfree
  • | Joined Jan 2020 | Status: Member | 233 Posts
//@version=3
study("VWAP/MVWAP/EMA CROSSOVER", overlay = true)
//created by @DerrickLaFlame
// Get user input
vwaplength= input(title="VWAP Length", type=integer, defval=1)
emaSource1= input(title="EMA 1 Source", type=source, defval=close)
emaLength1= input(title="EMA 1 Length", type=integer, defval=7)
emaSource2= input(title="EMA 2 Source", type=source, defval=close)
emaLength2= input(title="EMA 2 Length", type=integer, defval=25)
rsilimit= input(title="RSI Limit (RISKY)", type=integer, defval=65)
rsiminimum= input(title="RSI Minimum (WAIT FOR DIP)", type=integer, defval=51)
/// MVWAP ///
avlength = input(title="MVWAP Length", type=integer, defval=21)
av = ema(vwap,avlength)
plotav = plot(av,color= fuchsia, transp=0, title = "MVWAP")
mvwap = av
// Get values
ema1= ema(emaSource1, emaLength1)
ema2= ema(emaSource2, emaLength2)

/// VWAP ///
cvwap = ema(vwap,vwaplength)
plotvwap = plot(cvwap,color= yellow, transp=0, title = "VWAP", linewidth=3)
Check1 = ema1 >= mvwap
Check2 = ema2 >= mvwap
Check3 = cvwap >= mvwap
Cross = Check1 and Check2
Crossup = Cross and Check3
Buy = Crossup and rsi(close,14)
Risky = Crossup and rsi(close,14) > rsilimit
BuyDip = Crossup and rsi(close,14) < rsiminimum
GoodBuy = Buy and rsi(close,14) < rsilimit
GreatBuy = GoodBuy and rsi(close,14) > rsiminimum
//Test
Long = Buy == 1 ? 1 : 0
Short = Buy != 1 ? 1 : 0
Longtrigger = crossover(Long, 0.5)
Shorttrigger = crossover(Short, 0.5)
plotshape(Longtrigger, title= "Long Entry", location=location.belowbar, color=green, transp=0, style=shape.triangleup, text="Long")
plotshape(Shorttrigger, title= "Short Entry", location=location.abovebar, color=red, transp=0, style=shape.triangledown, text="Short")

// Plot signals to chart
plotshape(Buy, title= "Buy Alert", location=location.belowbar, color=white, transp=100, style=shape.triangleup, text="")
plotshape(Risky, title= "Risky", location=location.abovebar, color=red, transp=100, style=shape.triangledown, text="")
plotshape(BuyDip, title= "WAIT", location=location.abovebar, color=orange, transp=100, style=shape.triangledown, text="")
plotshape(GreatBuy, title= "Enter Here", location=location.belowbar, color=green, transp=100, style=shape.triangleup, text="")
plot(ema(emaSource1, emaLength1), color=yellow, linewidth=1, transp=0, title='EMA1')
plot(ema(emaSource2, emaLength2), color=orange, linewidth=1, transp=0, title='EMA2')
// Alerts
alertcondition(Longtrigger, title="Long Alert", message="Long Alert")
alertcondition(Shorttrigger, title="Short Alert", message="Short Alert")
//Barcolor
barcolor(Long == 1 ? green : red, title = "Bar Color")
// Cloud
displacement_A = 26
displacement_B = 26
conversion_len = 9
base_line_len = 26
senkou_B_len = 51
f(x) =>
total_volume = sum(volume, x)
volume_weighted_high = sum(high*volume, x)/total_volume
volume_weighted_low = sum(low*volume, x)/total_volume
(volume_weighted_high + volume_weighted_low)/2

conversion_line = f(conversion_len)
base_line = f(base_line_len)
senkou_A = (conversion_line + base_line)/2
senkou_B = f(senkou_B_len)

p1 = plot(senkou_A, offset = displacement_A, color = green, title = "Senkou A", linewidth = 2, transp = 100)
p2 = plot(senkou_B, offset = displacement_B, color = red, title = "Senkou B", linewidth = 2, transp = 100)
fill(p1, p2 , color = senkou_A > senkou_B ? green : red, transp= 73)//+------------------------------------------------------------------+
//| vwap ma cross.mq4 |
//| Copyright 2020, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2020, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//--- indicator buffers mapping

//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
//---

//--- return value of prev_calculated for next call
return(rates_total);
}
//+------------------------------------------------------------------+
 
 
  • Post #944
  • Quote
  • Feb 17, 2020 6:36am Feb 17, 2020 6:36am
  •  francisfree
  • | Joined Jan 2020 | Status: Member | 233 Posts
Can someone plz complete this
 
 
  • Post #945
  • Quote
  • Feb 17, 2020 7:39am Feb 17, 2020 7:39am
  •  francisfree
  • | Joined Jan 2020 | Status: Member | 233 Posts
Can anyone make vwap cross ema with alert iindicator
 
 
  • Post #946
  • Quote
  • Feb 17, 2020 3:20pm Feb 17, 2020 3:20pm
  •  Hutch
  • Joined Apr 2010 | Status: Lazy trader on D1 charts | 5,906 Posts
Quoting francisfree
Disliked
Can anyone make vwap cross ema with alert iindicator
Ignored
If you want results please make your request in the thread "I will code your EAs and Indicators for no charge" where the coders hang around.
 
1
  • Post #947
  • Quote
  • Feb 27, 2020 7:29am Feb 27, 2020 7:29am
  •  ThomasZhao
  • | Joined Oct 2017 | Status: Member | 3 Posts
Hello,guys

Thanks you all for share many indicators,more of them is useful.
But some indicators repaint and I hope get more accurately buy/sell signals on the chart, is there anyone would have recommendation?

Thanks a lot!
 
 
  • Post #948
  • Quote
  • Feb 27, 2020 11:33pm Feb 27, 2020 11:33pm
  •  francisfree
  • | Joined Jan 2020 | Status: Member | 233 Posts
Quoting hutch
Disliked
{quote} if you want results please make your request in the thread "i will code your eas and indicators for no charge" where the coders hang around.
Ignored
i didnt understand bro
 
 
  • Post #949
  • Quote
  • Feb 27, 2020 11:51pm Feb 27, 2020 11:51pm
  •  AltosTrader
  • | Joined Apr 2006 | Status: Member | 536 Posts
Quoting francisfree
Disliked
{quote} i didnt understand bro
Ignored

Make your request in the thread "I will code your eas and indicators for no charge" where the coders hang around. Someone there may help you.
 
2
  • Post #950
  • Quote
  • Feb 28, 2020 6:07am Feb 28, 2020 6:07am
  •  Hutch
  • Joined Apr 2010 | Status: Lazy trader on D1 charts | 5,906 Posts
For those who like RSI this one is quite nice.The Smoothed RSI has now been optimized by Mrtools into a non-repainting indicator & comes with many features such as Entry Lines (entry & retracement options) + MTF + Alerts + Histogram display & much more. Ideal for trend trading on Zero line crosses.
Attached Image (click to enlarge)
Click to Enlarge

Name: Smoothed RSI indicator for MT4 non-repainting with MTF + Alerts + Lines.png
Size: 51 KB
Attached File(s)
File Type: mq4 rsi smoothed - mtf + alerts + lines.mq4   16 KB | 1,763 downloads
File Type: ex4 rsi smoothed - mtf + alerts + lines.ex4   63 KB | 1,250 downloads
 
3
  • Post #951
  • Quote
  • Mar 6, 2020 2:38am Mar 6, 2020 2:38am
  •  jdforex75
  • | Joined Oct 2013 | Status: Member | 65 Posts
Morning All

An good BO indicators you know of???

Try these indis if you wish...

Cheers
Attached File(s)
File Type: mq4 FX Sniper's MA.mq4   2 KB | 839 downloads
File Type: ex4 FX Sniper's MA.ex4   3 KB | 679 downloads
File Type: ex4 10.2 TMA slope true 4.30.ex4   10 KB | 743 downloads
 
 
  • Post #952
  • Quote
  • Mar 6, 2020 12:57pm Mar 6, 2020 12:57pm
  •  Hutch
  • Joined Apr 2010 | Status: Lazy trader on D1 charts | 5,906 Posts
For those who like colorful waves
Attached Image (click to enlarge)
Click to Enlarge

Name: USDDKKH4.png
Size: 44 KB
Attached File(s)
File Type: mq4 asmfi-rainbow-mtf-indicator.mq4   24 KB | 1,122 downloads
 
2
  • Post #953
  • Quote
  • Mar 25, 2020 9:09am Mar 25, 2020 9:09am
  •  simorgh4
  • | Joined May 2019 | Status: Member | 7 Posts
Hi dear friends;
I have a problem. Some indicators cannot show symbol name in alert in non english languages and show question mark(??????).
As you can see in attached picture, Halftrend indicator has shown stock name as ????????
I tried to find font in mq4 file but I couldn't find anything.
Please help me and modify attached files to be able to see non english Stock name in alert.
Attached Image (click to enlarge)
Click to Enlarge

Name: image_2020_3_25-17_37_16_928_71z.jpg
Size: 44 KB
Attached File(s)
File Type: ex4 HalfTrend MTF with channels alerts.ex4   28 KB | 516 downloads
File Type: mq4 HalfTrend MTF with channels alerts.mq4   17 KB | 657 downloads
 
 
  • Post #954
  • Quote
  • Mar 25, 2020 9:36am Mar 25, 2020 9:36am
  •  dhyanesh
  • | Joined Sep 2017 | Status: Member | 16 Posts
Hello Friends,
Can anyone post indicators for MT5?
 
 
  • Post #955
  • Quote
  • Mar 25, 2020 11:13am Mar 25, 2020 11:13am
  •  simorgh4
  • | Joined May 2019 | Status: Member | 7 Posts
Quoting Atilla-Son
Disliked
{quote} Halftrend indicator has not shown stock name as ???????? {image}
Ignored
I have written : "in non english markets as Arabic markets' it has problem. Ofcourse many other indicators have the same problem.
 
 
  • Post #956
  • Quote
  • Mar 28, 2020 6:45am Mar 28, 2020 6:45am
  •  Dingoman-two
  • Joined Aug 2017 | Status: Just a little Aussi Battler | 4,450 Posts
Quoting francisfree
Disliked
//@version=3 study("VWAP/MVWAP/EMA CROSSOVER", overlay = true) //created by @DerrickLaFlame // Get user input vwaplength= input(title="VWAP Length", type=integer, defval=1) emaSource1= input(title="EMA 1 Source", type=source, defval=close) emaLength1= input(title="EMA 1 Length", type=integer, defval=7) emaSource2= input(title="EMA 2 Source", type=source, defval=close) emaLength2= input(title="EMA 2 Length", type=integer, defval=25) rsilimit= input(title="RSI Limit (RISKY)", type=integer, defval=65) rsiminimum= input(title="RSI Minimum (WAIT FOR...
Ignored

Attached File(s)
File Type: ex4 VWAP Plus 1.ex4   34 KB | 763 downloads
 
1
  • Post #957
  • Quote
  • Mar 28, 2020 1:47pm Mar 28, 2020 1:47pm
  •  Hutch
  • Joined Apr 2010 | Status: Lazy trader on D1 charts | 5,906 Posts
You might want to change the input to fit with your trading style.
Attached Image (click to enlarge)
Click to Enlarge

Name: QTI.png
Size: 25 KB
Attached File(s)
File Type: ex4 QTI.ex4   4 KB | 462 downloads
 
 
  • Post #958
  • Quote
  • Mar 28, 2020 6:57pm Mar 28, 2020 6:57pm
  •  RoyPK
  • | Joined Apr 2010 | Status: Member | 166 Posts
Quoting Hutch
Disliked
You might want to change the input to fit with your trading style. {file} {image}
Ignored
Hi Hutch,

Is this indicator time limited?

Thanks
Roy
 
 
  • Post #959
  • Quote
  • Mar 29, 2020 8:33am Mar 29, 2020 8:33am
  •  Hutch
  • Joined Apr 2010 | Status: Lazy trader on D1 charts | 5,906 Posts
Quoting RoyPK
Disliked
{quote} Hi Hutch, Is this indicator time limited? Thanks Roy
Ignored
Hi Roy, I received it from one of my friend and I don't think that there is a time limit
 
 
  • Post #960
  • Quote
  • Mar 29, 2020 6:24pm Mar 29, 2020 6:24pm
  •  RoyPK
  • | Joined Apr 2010 | Status: Member | 166 Posts
Quoting Hutch
Disliked
{quote} Hi Roy, I received it from one of my friend and I don't think that there is a time limit
Ignored
Thanks Hutch.

Roy
 
 
  • Platform Tech
  • /
  • Indicator Bank
  • Reply to Thread
    • 1 4647Page 484950 82
    • 1 47Page 4849 82
1 trader viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023