• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 6:12pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 6:12pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

4% A Day Forever 1,432 replies

an EA that worked forever 29 replies

Forever Demo Account 9 replies

  • Commercial Content
  • /
  • Reply to Thread
  • Subscribe
  • 4,720
Attachments: Ichimoku forever
Exit Attachments
Tags: Ichimoku forever
Cancel

Ichimoku forever

  • Last Post
  •  
  • 1 847848Page 849850851 865
  • 1 Page 849 865
  •  
  • Post #16,961
  • Quote
  • Dec 13, 2013 11:32am Dec 13, 2013 11:32am
  •  johnmljacob
  • | Joined Dec 2013 | Status: Member | 25 Posts
I know im super late, for im a new trader. I was wondering if the ichi360 monitor v3 still open. Is it free? Can you use on mt4? I think ichi360 monitor v3 is the best looking ichi monitor ive seen so far.
 
 
  • Post #16,962
  • Quote
  • Dec 23, 2013 5:41pm Dec 23, 2013 5:41pm
  •  old beer
  • | Joined Sep 2012 | Status: Member | 2 Posts
i cant believe i just finished reading 16961 post. i take long time to finish that. i need some rest.hhhhhhhhhhhhhhhhhh
thanks to every one here for trying to teaching without any money .
pic-el your a great guy .hope every thing ok with you. ichi360 you are very good man.
i dont wont to forget any body .but all of you rely great. thank you very much
 
 
  • Post #16,963
  • Quote
  • Jan 11, 2014 12:07am Jan 11, 2014 12:07am
  •  juba92
  • | Joined Nov 2012 | Status: Member | 1 Post
so according to what i read
when the market opens :
EURJPY : i'll look for sell signals
GBPJPY : i'll look for sell signals
GBPUSD : i'll look for buy signals
am i right ?
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: eurjpy.PNG
Size: 83 KB
Click to Enlarge

Name: gbpjpy.PNG
Size: 78 KB
Click to Enlarge

Name: gbpusd.PNG
Size: 76 KB
 
 
  • Post #16,964
  • Quote
  • Feb 19, 2014 5:46am Feb 19, 2014 5:46am
  •  djarum11
  • | Joined Dec 2008 | Status: Member | 210 Posts
i need an indi that will shift all of the Ichimoku lines 26 periods into the future. in other words i want to see Chikou end at the current bar, and the Kijun value of 26 bars back will appear on the current bar. i have been playing with the indi code but can't get it to work.

this is only for data-export test purposes, i am not looking to reinvent the Ichi wheel here or anything. issue is, my analysis software can only grab data from the current bar, but i need to know the value of Kijun and company from x bars back, so i simply need the past shifted forward by a user-variable shift value.

thanks!
 
 
  • Post #16,965
  • Quote
  • Feb 19, 2014 6:55am Feb 19, 2014 6:55am
  •  Ciao_ciao
  • | Joined Sep 2011 | Status: Member | 32 Posts
Quoting djarum11
Disliked
i need an indi that will shift all of the Ichimoku lines 26 periods into the future. in other words i want to see Chikou end at the current bar, and the Kijun value of 26 bars back will appear on the current bar. i have been playing with the indi code but can't get it to work. this is only for data-export test purposes, i am not looking to reinvent the Ichi wheel here or anything. issue is, my analysis software can only grab data from the current bar, but i need to know the value of Kijun and company from x bars back, so i simply need the past shifted...
Ignored
JForex platform is the only one to fit your needs. You can control shifting all the 5 lines as you want to. Try it out in Demo to figure it out.
http://www.dukascopy.com/swiss/english/forex/dealstation/?c1#JForex

Good Luck
 
 
  • Post #16,966
  • Quote
  • Feb 19, 2014 2:03pm Feb 19, 2014 2:03pm
  •  djarum11
  • | Joined Dec 2008 | Status: Member | 210 Posts
thanks, but i need an MT4 indicator.

does anyone know how to shift all values in the standard Ichimoku indicator? i tried playing with settings but it is tricky.

thanks
 
 
  • Post #16,967
  • Quote
  • Mar 3, 2014 1:32pm Mar 3, 2014 1:32pm
  •  hdelfino
  • | Joined Jun 2010 | Status: Member | 4 Posts
Hello everyone. Could anyone help tell me what wrong whirh this ea that I can not run it. Thanks for your time.

------------------------------------+
//| This MQL is generated by Expert Advisor Builder |
//| http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ |
//| |
//| In no event will author be liable for any damages whatsoever. |
//| Use at your own risk. |
//| |
//+------------------- DO NOT REMOVE THIS HEADER --------------------+
#define SIGNAL_NONE 0
#define SIGNAL_BUY 1
#define SIGNAL_SELL 2
#define SIGNAL_CLOSEBUY 3
#define SIGNAL_CLOSESELL 4
#property copyright "Expert Advisor Builder"
#property link "http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/"
extern int MagicNumber = 10;
extern bool SignalMail = False;
extern bool EachTickMode = False;
extern double Lots = 5;
extern int Slippage = 3;
extern bool UseStopLoss = True;
extern int StopLoss = 20;
extern bool UseTakeProfit = True;
extern int TakeProfit = 30;
extern bool UseTrailingStop = False;
extern int TrailingStop = 30;
int BarCount;
int Current;
bool TickCheck = False;
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init() {
BarCount = Bars;
if (EachTickMode) Current = 0; else Current = 1;
return(0);
}
//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int deinit() {
return(0);
}
//+------------------------------------------------------------------+
//| expert start function |
//+------------------------------------------------------------------+
int start() {
int Order = SIGNAL_NONE;
int Total, Ticket;
double StopLossLevel, TakeProfitLevel;

if (EachTickMode && Bars != BarCount) TickCheck = False;
Total = OrdersTotal();
Order = SIGNAL_NONE;
//+------------------------------------------------------------------+
//| Variable Begin |
//+------------------------------------------------------------------+

double Buy1_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_TENKANSEN, Current + 0);
double Buy1_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_KIJUNSEN, Current + 0);
double Buy2_1 = iIchimoku(NULL, 0, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Buy2_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_SENKOUSPANB, Current + 0);
double Buy3_1 = iClose(NULL, PERIOD_M15, Current + 26);
double Buy3_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_CHIKOUSPAN, Current + 0);
double Buy4_1 = iClose(NULL, PERIOD_M15, Current + 0);
double Buy4_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Buy5_1 = iClose(NULL, PERIOD_H1, Current + 0);
double Buy5_2 = iIchimoku(NULL, PERIOD_H1, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Buy6_1 = iClose(NULL, PERIOD_H4, Current + 0);
double Buy6_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Sell1_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_TENKANSEN, Current + 0);
double Sell1_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_KIJUNSEN, Current + 0);
double Sell2_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANB, Current + 0);
double Sell2_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Sell3_1 = iClose(NULL, PERIOD_M15, Current + 26);
double Sell3_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_CHIKOUSPAN, Current + 0);
double Sell4_1 = iClose(NULL, PERIOD_M15, Current + 0);
double Sell4_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Sell5_1 = iClose(NULL, PERIOD_H1, Current + 0);
double Sell5_2 = iIchimoku(NULL, PERIOD_H1, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Sell6_1 = iClose(NULL, PERIOD_H4, Current + 0);
double Sell6_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double CloseBuy1_1 = iClose(NULL, PERIOD_M15, Current + 0);
double CloseBuy1_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_KIJUNSEN, Current + 0);
double CloseSell1_1 = iClose(NULL, PERIOD_M15, Current + 0);
double CloseSell1_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_KIJUNSEN, Current + 0);

//+------------------------------------------------------------------+
//| Variable End |
//+------------------------------------------------------------------+
//Check position
bool IsTrade = False;
for (int i = 0; i < Total; i ++) {
OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
if(OrderType() <= OP_SELL && OrderSymbol() == Symbol()) {
IsTrade = True;
if(OrderType() == OP_BUY) {
//Close
//+------------------------------------------------------------------+
//| Signal Begin(Exit Buy) |
//+------------------------------------------------------------------+
if (CloseBuy1_1 < CloseBuy1_2) Order = SIGNAL_CLOSEBUY;

//+------------------------------------------------------------------+
//| Signal End(Exit Buy) |
//+------------------------------------------------------------------+
if (Order == SIGNAL_CLOSEBUY && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
OrderClose(OrderTicket(), OrderLots(), Bid, Slippage, MediumSeaGreen);
if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Close Buy");
if (!EachTickMode) BarCount = Bars;
IsTrade = False;
continue;
}
//Trailing stop
if(UseTrailingStop && TrailingStop > 0) {
if(Bid - OrderOpenPrice() > Point * TrailingStop) {
if(OrderStopLoss() < Bid - Point * TrailingStop) {
OrderModify(OrderTicket(), OrderOpenPrice(), Bid - Point * TrailingStop, OrderTakeProfit(), 0, MediumSeaGreen);
if (!EachTickMode) BarCount = Bars;
continue;
}
}
}
} else {
//Close
//+------------------------------------------------------------------+
//| Signal Begin(Exit Sell) |
//+------------------------------------------------------------------+
if (CloseSell1_1 > CloseSell1_2) Order = SIGNAL_CLOSESELL;

//+------------------------------------------------------------------+
//| Signal End(Exit Sell) |
//+------------------------------------------------------------------+
if (Order == SIGNAL_CLOSESELL && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
OrderClose(OrderTicket(), OrderLots(), Ask, Slippage, DarkOrange);
if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Close Sell");
if (!EachTickMode) BarCount = Bars;
IsTrade = False;
continue;
}
//Trailing stop
if(UseTrailingStop && TrailingStop > 0) {
if((OrderOpenPrice() - Ask) > (Point * TrailingStop)) {
if((OrderStopLoss() > (Ask + Point * TrailingStop)) || (OrderStopLoss() == 0)) {
OrderModify(OrderTicket(), OrderOpenPrice(), Ask + Point * TrailingStop, OrderTakeProfit(), 0, DarkOrange);
if (!EachTickMode) BarCount = Bars;
continue;
}
}
}
}
}
}
//+------------------------------------------------------------------+
//| Signal Begin(Entry) |
//+------------------------------------------------------------------+
if (Buy1_1 > Buy1_2 && Buy2_1 > Buy2_2 && Buy3_1 > Buy3_2 && Buy4_1 > Buy4_2 && Buy5_1 > Buy5_2 && Buy6_1 > Buy6_2) Order = SIGNAL_BUY;
if (Sell1_1 < Sell1_2 && Sell2_1 > Sell2_2 && Sell3_1 < Sell3_2 && Sell4_1 < Sell4_2 && Sell5_1 < Sell5_2 && Sell6_1 < Sell6_2) Order = SIGNAL_SELL;

//+------------------------------------------------------------------+
//| Signal End |
//+------------------------------------------------------------------+
//Buy
if (Order == SIGNAL_BUY && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
if(!IsTrade) {
//Check free margin
if (AccountFreeMargin() < (1000 * Lots)) {
Print("We have no money. Free Margin = ", AccountFreeMargin());
return(0);
}
if (UseStopLoss) StopLossLevel = Ask - StopLoss * Point; else StopLossLevel = 0.0;
if (UseTakeProfit) TakeProfitLevel = Ask + TakeProfit * Point; else TakeProfitLevel = 0.0;
Ticket = OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, StopLossLevel, TakeProfitLevel, "Buy(#" + MagicNumber + ")", MagicNumber, 0, DodgerBlue);
if(Ticket > 0) {
if (OrderSelect(Ticket, SELECT_BY_TICKET, MODE_TRADES)) {
Print("BUY order opened : ", OrderOpenPrice());
if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Open Buy");
} else {
Print("Error opening BUY order : ", GetLastError());
}
}
if (EachTickMode) TickCheck = True;
if (!EachTickMode) BarCount = Bars;
return(0);
}
}
//Sell
if (Order == SIGNAL_SELL && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
if(!IsTrade) {
//Check free margin
if (AccountFreeMargin() < (1000 * Lots)) {
Print("We have no money. Free Margin = ", AccountFreeMargin());
return(0);
}
if (UseStopLoss) StopLossLevel = Bid + StopLoss * Point; else StopLossLevel = 0.0;
if (UseTakeProfit) TakeProfitLevel = Bid - TakeProfit * Point; else TakeProfitLevel = 0.0;
Ticket = OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, StopLossLevel, TakeProfitLevel, "Sell(#" + MagicNumber + ")", MagicNumber, 0, DeepPink);
if(Ticket > 0) {
if (OrderSelect(Ticket, SELECT_BY_TICKET, MODE_TRADES)) {
Print("SELL order opened : ", OrderOpenPrice());
if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Open Sell");
} else {
Print("Error opening SELL order : ", GetLastError());
}
}
if (EachTickMode) TickCheck = True;
if (!EachTickMode) BarCount = Bars;
return(0);
}
}
if (!EachTickMode) BarCount = Bars;
return(0);
}
//+------------------------------------------------------------------+
Attached File(s)
File Type: docx This MQL is generated by Expert Advisor Builder.docx   15 KB | 702 downloads
 
 
  • Post #16,968
  • Quote
  • Mar 3, 2014 11:13pm Mar 3, 2014 11:13pm
  •  hdelfino
  • | Joined Jun 2010 | Status: Member | 4 Posts
Fix and change some aspects, but I can not run it yet. The EA appears in the browser but opaque and can not be charge it in the chart.

//+------------------------------------------------------------------+
//| This MQL is generated by Expert Advisor Builder |
//| http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ |
//| |
//| In no event will author be liable for any damages whatsoever. |
//| Use at your own risk. |
//| |
//+------------------- DO NOT REMOVE THIS HEADER --------------------+
#define SIGNAL_NONE 0
#define SIGNAL_BUY 1
#define SIGNAL_SELL 2
#define SIGNAL_CLOSEBUY 3
#define SIGNAL_CLOSESELL 4
#property copyright "Expert Advisor Builder"
#property link "http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/"
extern int MagicNumber = 0;
extern bool SignalMail = False;
extern bool EachTickMode = True;
extern double Lots = 3;
extern int Slippage = 3;
extern bool UseStopLoss = True;
extern int StopLoss = 20;
extern bool UseTakeProfit = True;
extern int TakeProfit = 30;
extern bool UseTrailingStop = False;
extern int TrailingStop = 30;
int BarCount;
int Current;
bool TickCheck = False;
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init() {
BarCount = Bars;
if (EachTickMode) Current = 0; else Current = 1;
return(0);
}
//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int deinit() {
return(0);
}
//+------------------------------------------------------------------+
//| expert start function |
//+------------------------------------------------------------------+
int start() {
int Order = SIGNAL_NONE;
int Total, Ticket;
double StopLossLevel, TakeProfitLevel;

if (EachTickMode && Bars != BarCount) TickCheck = False;
Total = OrdersTotal();
Order = SIGNAL_NONE;
//+------------------------------------------------------------------+
//| Variable Begin |
//+------------------------------------------------------------------+

double Buy1_1 = iOpen(NULL, PERIOD_H1, Current + 0);
double Buy1_2 = iIchimoku(NULL, PERIOD_H1, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Buy2_1 = iOpen(NULL, PERIOD_H4, Current + 0);
double Buy2_2 = iIchimoku(NULL, PERIOD_H4, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Buy3_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_TENKANSEN, Current + 0);
double Buy3_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_KIJUNSEN, Current + 0);
double Buy4_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANA, Current + 5);
double Buy4_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANB, Current + 5);
double Buy5_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Buy5_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANB, Current + 0);
double Buy6_1 = iIchimoku(NULL, 0, 9, 26, 52, MODE_CHIKOUSPAN, Current + 0);
double Buy6_2 = iClose(NULL, PERIOD_M15, Current + 26);
double Buy7_1 = iOpen(NULL, PERIOD_M15, Current + 0);
double Buy7_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Sell1_1 = iOpen(NULL, PERIOD_H1, Current + 0);
double Sell1_2 = iIchimoku(NULL, PERIOD_H1, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Sell2_1 = iOpen(NULL, PERIOD_H4, Current + 0);
double Sell2_2 = iIchimoku(NULL, PERIOD_H4, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Sell3_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_TENKANSEN, Current + 0);
double Sell3_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_KIJUNSEN, Current + 0);
double Sell4_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANA, Current + 5);
double Sell4_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANB, Current + 5);
double Sell5_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double Sell5_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_SENKOUSPANB, Current + 0);
double Sell6_1 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_CHIKOUSPAN, Current + 0);
double Sell6_2 = iClose(NULL, PERIOD_M15, Current + 0);
double Sell7_1 = iOpen(NULL, PERIOD_M15, Current + 0);
double Sell7_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_SENKOUSPANA, Current + 0);
double CloseBuy1_1 = iOpen(NULL, PERIOD_M15, Current + 0);
double CloseBuy1_2 = iIchimoku(NULL, PERIOD_M15, 9, 26, 52, MODE_KIJUNSEN, Current + 0);
double CloseSell1_1 = iOpen(NULL, 0, Current + 0);
double CloseSell1_2 = iIchimoku(NULL, 0, 9, 26, 52, MODE_KIJUNSEN, Current + 0);

//+------------------------------------------------------------------+
//| Variable End |
//+------------------------------------------------------------------+
//Check position
bool IsTrade = False;
for (int i = 0; i < Total; i ++) {
OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
if(OrderType() <= OP_SELL && OrderSymbol() == Symbol()) {
IsTrade = True;
if(OrderType() == OP_BUY) {
//Close
//+------------------------------------------------------------------+
//| Signal Begin(Exit Buy) |
//+------------------------------------------------------------------+
if (CloseBuy1_1 < CloseBuy1_2) Order = SIGNAL_CLOSEBUY;

//+------------------------------------------------------------------+
//| Signal End(Exit Buy) |
//+------------------------------------------------------------------+
if (Order == SIGNAL_CLOSEBUY && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
OrderClose(OrderTicket(), OrderLots(), Bid, Slippage, MediumSeaGreen);
if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Close Buy");
if (!EachTickMode) BarCount = Bars;
IsTrade = False;
continue;
}
//Trailing stop
if(UseTrailingStop && TrailingStop > 0) {
if(Bid - OrderOpenPrice() > Point * TrailingStop) {
if(OrderStopLoss() < Bid - Point * TrailingStop) {
OrderModify(OrderTicket(), OrderOpenPrice(), Bid - Point * TrailingStop, OrderTakeProfit(), 0, MediumSeaGreen);
if (!EachTickMode) BarCount = Bars;
continue;
}
}
}
} else {
//Close
//+------------------------------------------------------------------+
//| Signal Begin(Exit Sell) |
//+------------------------------------------------------------------+
if (CloseSell1_1 > CloseSell1_2) Order = SIGNAL_CLOSESELL;

//+------------------------------------------------------------------+
//| Signal End(Exit Sell) |
//+------------------------------------------------------------------+
if (Order == SIGNAL_CLOSESELL && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
OrderClose(OrderTicket(), OrderLots(), Ask, Slippage, DarkOrange);
if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Close Sell");
if (!EachTickMode) BarCount = Bars;
IsTrade = False;
continue;
}
//Trailing stop
if(UseTrailingStop && TrailingStop > 0) {
if((OrderOpenPrice() - Ask) > (Point * TrailingStop)) {
if((OrderStopLoss() > (Ask + Point * TrailingStop)) || (OrderStopLoss() == 0)) {
OrderModify(OrderTicket(), OrderOpenPrice(), Ask + Point * TrailingStop, OrderTakeProfit(), 0, DarkOrange);
if (!EachTickMode) BarCount = Bars;
continue;
}
}
}
}
}
}
//+------------------------------------------------------------------+
//| Signal Begin(Entry) |
//+------------------------------------------------------------------+
if (Buy1_1 > Buy1_2 && Buy2_1 > Buy2_2 && Buy3_1 > Buy3_2 && Buy4_1 > Buy4_2 || Buy5_1 > Buy5_2 && Buy6_1 > Buy6_2 && Buy7_1 > Buy7_2) Order = SIGNAL_BUY;
if (Sell1_1 > Sell1_2 && Sell2_1 > Sell2_2 && Sell3_1 < Sell3_2 && Sell4_1 < Sell4_2 && Sell5_1 < Sell5_2 && Sell6_1 < Sell6_2 && Sell7_1 < Sell7_2) Order = SIGNAL_SELL;

//+------------------------------------------------------------------+
//| Signal End |
//+------------------------------------------------------------------+
//Buy
if (Order == SIGNAL_BUY && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
if(!IsTrade) {
//Check free margin
if (AccountFreeMargin() < (1000 * Lots)) {
Print("We have no money. Free Margin = ", AccountFreeMargin());
return(0);
}
if (UseStopLoss) StopLossLevel = Ask - StopLoss * Point; else StopLossLevel = 0.0;
if (UseTakeProfit) TakeProfitLevel = Ask + TakeProfit * Point; else TakeProfitLevel = 0.0;
Ticket = OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, StopLossLevel, TakeProfitLevel, "Buy(#" + MagicNumber + ")", MagicNumber, 0, DodgerBlue);
if(Ticket > 0) {
if (OrderSelect(Ticket, SELECT_BY_TICKET, MODE_TRADES)) {
Print("BUY order opened : ", OrderOpenPrice());
if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Open Buy");
} else {
Print("Error opening BUY order : ", GetLastError());
}
}
if (EachTickMode) TickCheck = True;
if (!EachTickMode) BarCount = Bars;
return(0);
}
}
//Sell
if (Order == SIGNAL_SELL && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
if(!IsTrade) {
//Check free margin
if (AccountFreeMargin() < (1000 * Lots)) {
Print("We have no money. Free Margin = ", AccountFreeMargin());
return(0);
}
if (UseStopLoss) StopLossLevel = Bid + StopLoss * Point; else StopLossLevel = 0.0;
if (UseTakeProfit) TakeProfitLevel = Bid - TakeProfit * Point; else TakeProfitLevel = 0.0;
Ticket = OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, StopLossLevel, TakeProfitLevel, "Sell(#" + MagicNumber + ")", MagicNumber, 0, DeepPink);
if(Ticket > 0) {
if (OrderSelect(Ticket, SELECT_BY_TICKET, MODE_TRADES)) {
Print("SELL order opened : ", OrderOpenPrice());
if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Open Sell");
} else {
Print("Error opening SELL order : ", GetLastError());
}
}
if (EachTickMode) TickCheck = True;
if (!EachTickMode) BarCount = Bars;
return(0);
}
}
if (!EachTickMode) BarCount = Bars;
return(0);
}
//+------------------------------------------------------------------+
 
 
  • Post #16,969
  • Quote
  • Mar 8, 2014 11:35pm Mar 8, 2014 11:35pm
  •  Almutairi_Q8
  • | Joined May 2013 | Status: Junior Member | 1 Post

AUD


Daly

http://im58.gulfup.com/yGOPH.png

4H

http://im58.gulfup.com/RB0Pq.png

1H

http://im58.gulfup.com/YjwNV.png


What are you think guys ?

 
 
  • Post #16,970
  • Quote
  • Mar 18, 2014 10:32am Mar 18, 2014 10:32am
  •  piplus
  • | Joined Mar 2013 | Status: Member | 51 Posts
Hello all.

some other indicator can be combined with ichimoku for confirmation of entry, like RSI, MACD, etc ... and how to use?

thanks!
 
 
  • Post #16,971
  • Quote
  • Mar 18, 2014 11:25am Mar 18, 2014 11:25am
  •  jacioux
  • | Joined Aug 2007 | Status: Member | 99 Posts
Quoting piplus
Disliked
Hello all. some other indicator can be combined with ichimoku for confirmation of entry, like RSI, MACD, etc ... and how to use? thanks!
Ignored
This is a hard question to answer because of what time frame you want to trade it with. If you are more daily then the standard default Ichi is fine as is. Its more of when you get into the 1 hour and below you can add MACD or RSI. I use Ichi with Renko bars not candles. I have the Renko set for 10 and wait for the bars to cross the span and sell or buy. Another option i have seen is using tick charts. So really when you say confirm its just a fancy way of putting odds in your favor. Like if MACD is above 0 (on 15 min chart) and you get a cross to the upside you buy it. all MACD is doing is "confirming" the candle move has a better odd of going up now down. You really just need to play around with different times and settings and see what works for you. There is no magic numbers they will all have losers focus more on 2:1 win to loss.
 
 
  • Post #16,972
  • Quote
  • Mar 19, 2014 3:38pm Mar 19, 2014 3:38pm
  •  piplus
  • | Joined Mar 2013 | Status: Member | 51 Posts
Quoting jacioux
Disliked
{quote} This is a hard question to answer because of what time frame you want to trade it with. If you are more daily then the standard default Ichi is fine as is. Its more of when you get into the 1 hour and below you can add MACD or RSI. I use Ichi with Renko bars not candles. I have the Renko set for 10 and wait for the bars to cross the span and sell or buy. Another option i have seen is using tick charts. So really when you say confirm its just a fancy way of putting odds in your favor. Like if MACD is above 0 (on 15 min chart) and you get...
Ignored

Thanks a lot jacioux.

I like to trade H1, could you send me the indicators and template with the Renko bars? I wonder a strategy ichimoku and Renko bars together.

Thanks
 
 
  • Post #16,973
  • Quote
  • Mar 19, 2014 3:44pm Mar 19, 2014 3:44pm
  •  jacioux
  • | Joined Aug 2007 | Status: Member | 99 Posts
Quoting piplus
Disliked
{quote} Thanks a lot jacioux. I like to trade H1, could you send me the indicators and template with the Renko bars? I wonder a strategy ichimoku and Renko bars together. Thanks
Ignored
Here is the link to FF post on it. There are all the indicators and chart setups. BE CAREFUL sense this new build 600 and up some of the indicators are not working right. Like the Renko is not consistent so i have to pay to get that re-coded. Keep in mind when using Renko its not based on time only full pips. The same theory can be applied to non Renko as well http://www.forexfactory.com/showthread.php?t=392058
 
 
  • Post #16,974
  • Quote
  • Mar 19, 2014 4:21pm Mar 19, 2014 4:21pm
  •  piplus
  • | Joined Mar 2013 | Status: Member | 51 Posts
Quoting jacioux
Disliked
{quote} Here is the link to FF post on it. There are all the indicators and chart setups. BE CAREFUL sense this new build 600 and up some of the indicators are not working right. Like the Renko is not consistent so i have to pay to get that re-coded. Keep in mind when using Renko its not based on time only full pips. The same theory can be applied to non Renko as well http://www.forexfactory.com/showthread.php?t=392058
Ignored

Ok.

Thanks a lot, jacioux!
 
 
  • Post #16,975
  • Quote
  • Mar 21, 2014 11:57am Mar 21, 2014 11:57am
  •  Danidct17
  • | Joined Mar 2014 | Status: Member | 9 Posts
Hi guys,

I've been learning the Ichimoku system for a while and just started trading with it. You've got ya selves someone else for the thread!
Thanks guys.

Danidct17
 
 
  • Post #16,976
  • Quote
  • Mar 27, 2014 9:21am Mar 27, 2014 9:21am
  •  Koopa
  • | Joined Jan 2011 | Status: Member | 38 Posts
So I guess everyone here lost contact with Asher/Ichi360 ?
 
 
  • Post #16,977
  • Quote
  • Mar 27, 2014 10:32am Mar 27, 2014 10:32am
  •  jacioux
  • | Joined Aug 2007 | Status: Member | 99 Posts
Quoting Koopa
Disliked
So I guess everyone here lost contact with Asher/Ichi360 ?
Ignored
Not sure what happen to him even his website is not loading. I am not sure who uses Ichi on here but i trade with it daily.
 
 
  • Post #16,978
  • Quote
  • Mar 27, 2014 10:51am Mar 27, 2014 10:51am
  •  Koopa
  • | Joined Jan 2011 | Status: Member | 38 Posts
Quoting jacioux
Disliked
{quote} Not sure what happen to him even his website is not loading. I am not sure who uses Ichi on here but i trade with it daily.
Ignored
Do you have any idea what currency strength indicator Asher/Ichi360 was using on his screenshots? It was a different indicator than those posted on this thread. I've never been able to find whzt it was.
 
 
  • Post #16,979
  • Quote
  • Mar 27, 2014 10:56am Mar 27, 2014 10:56am
  •  jacioux
  • | Joined Aug 2007 | Status: Member | 99 Posts
Quoting Koopa
Disliked
{quote} Do you have any idea what currency strength indicator Asher/Ichi360 was using on his screenshots? It was a different indicator than those posted on this thread. I've never been able to find whzt it was.
Ignored
that was something he built and you could download but sense the new build 600 and up it dosent work.
 
 
  • Post #16,980
  • Quote
  • Mar 27, 2014 11:03am Mar 27, 2014 11:03am
  •  Koopa
  • | Joined Jan 2011 | Status: Member | 38 Posts
Quoting jacioux
Disliked
{quote} that was something he built and you could download but sense the new build 600 and up it dosent work.
Ignored
Do you have it or know where I can find it ? Maybe you ave the name of the indicator ? To be sure we are talking about the same thing I'm posting a screenshot of the indicator
Attached Image (click to enlarge)
Click to Enlarge

Name: EURUSD_080312.jpg
Size: 58 KB
 
 
  • Commercial Content
  • /
  • Ichimoku forever
  • Reply to Thread
    • 1 847848Page 849850851 865
    • 1 Page 849 865
6 traders 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