BTC USD 84,000.0 Gold USD 4,285.46
Time now: Jun 1, 12:00 AM

3000 pips seminggu? boleh ke? tanpa chart?

Addesss...Lupo lak ari nie 21hb, patutla semua pair buat major movement...Tahniah pada yang mengaut pip hijau hari nie...huhu den da tertinggal bas daa...
Takper bus ada 24 jam sehari..Yg penting kita pastikan beli tiket yg betul dan bas yg betul pada waktu yg betul agar selamat ke destinasi yg dituju iaitu....mapley Masjid Tanah...huhu..jom mengefe tarik satu!:D
 
check your total pips

kalau nak track berapa pips total dah your basket dah bergerak.. leh pakai indi bawah ni. cut and paste dalam indicator.

//+------------------------------------------------------------------+
//| totalpipsdisplay.mq4 |
//| Copyright © 2009, MetaQuotes Software Corp. |
//| http://www.oasiswealthbuilders.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2009, Lukpayat -1000 pips Club"
#property link "http://www.metaquotes.net"

#property indicator_chart_window
#define NL "\n"
extern int WhatCorner = 3;
extern int xAxis = 400;
extern int yAxis = 10;
extern int FontSize = 20;
extern string FontType = "Arial Bold" ; //"Comic Sans MS";
extern string note2 = "Default Font Color";
extern color FontColor = Blue;
extern color FontColorUp = Lime;
extern color FontColorDn = Red;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
ObjectsDeleteAll();
ObjectsDeleteAll(0,OBJ_LABEL);
ObjectDelete("Market_Price_Label");
Comment ("");
return(0);

}

//------------------------------------------------------------------------------------
int CalculatePipsProfit()
{
int Profit=0;
for (int cc=0; cc<OrdersTotal()-1; cc++)
{
OrderSelect(cc,SELECT_BY_POS);
if (OrderType()==OP_BUY) double ThisTradeProfit = MarketInfo(OrderSymbol(),MODE_BID)-OrderOpenPrice();
if (OrderType()==OP_SELL) ThisTradeProfit = OrderOpenPrice()-MarketInfo(OrderSymbol(), MODE_ASK);
if (MarketInfo(OrderSymbol(),MODE_DIGITS)==4) int multiplier=10000;
if (MarketInfo(OrderSymbol(),MODE_DIGITS)==2) multiplier=100;
ThisTradeProfit = ThisTradeProfit * multiplier;
int iThisTradeProfit=ThisTradeProfit;
Profit=Profit+iThisTradeProfit;
}//for (int cc=0; cc<OrdersTotal(); cc++)

return(Profit);
}// end int CalculatePipsProfit()



//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
if (OrdersTotal()==0)
{
Comment("No trades to monitor");
return;
}


int PipsProfit=CalculatePipsProfit();

// string ScreenMessage;
Comment("Profit = ", PipsProfit, NL);

string Market_Price='';
Market_Price = StringConcatenate("PipsProfit = ",PipsProfit,"\n");

if (PipsProfit > 0) FontColor = FontColorUp;
if (PipsProfit < 0) FontColor = FontColorDn;
if (PipsProfit ==0) FontColor = FontColor;


ObjectCreate("Market_Price_Label", OBJ_LABEL, 0, 0, 0);
ObjectSetText("Market_Price_Label", Market_Price, FontSize, FontType, FontColor);
ObjectSet("Market_Price_Label", OBJPROP_CORNER, WhatCorner);
ObjectSet("Market_Price_Label", OBJPROP_XDISTANCE, xAxis);
ObjectSet("Market_Price_Label", OBJPROP_YDISTANCE, yAxis);



return(0);
}
//+------------------------------------------------------------------+

kalau nak dia reactive and tak follow tick timer, leh bubuh yang kat bawah ni dalam expert.

create new kat meta editor, choose expert.

//+------------------------------------------------------------------+
//| Equestrian Race Horse profit protect.mq4 |
//| Copyright © 2009,1000 pips club |
//| www.oasiswealthbuilders.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2009, Oasis 1000 pips club"
#property link "www.noweb.com"
#include <WinUser32.mqh>
#include <stdlib.mqh>
#define NL "\n"

bool CloseAll=false;
extern int WhatCorner = 3;
extern int xAxis = 400;
extern int yAxis = 10;
extern int FontSize = 20;
extern string FontType = "Arial Bold" ; //"Comic Sans MS";
extern string note2 = "Default Font Color";
extern color FontColor = Blue;
extern color FontColorUp = Lime;
extern color FontColorDn = Red;
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
ObjectsDeleteAll();
ObjectsDeleteAll(0,OBJ_LABEL);
ObjectDelete("Market_Price_Label");
Comment ("");
return(0);
//----
return(0);
}

int CalculatePipsProfit()
{
int Profit=0;
for (int cc=0; cc<OrdersTotal()-1; cc++)
{
OrderSelect(cc,SELECT_BY_POS);
if (OrderType()==OP_BUY) double ThisTradeProfit = MarketInfo(OrderSymbol(),MODE_BID)-OrderOpenPrice();
if (OrderType()==OP_SELL) ThisTradeProfit = OrderOpenPrice()-MarketInfo(OrderSymbol(), MODE_ASK);
if (MarketInfo(OrderSymbol(),MODE_DIGITS)==4) int multiplier=10000;
if (MarketInfo(OrderSymbol(),MODE_DIGITS)==2) multiplier=100;
ThisTradeProfit = ThisTradeProfit * multiplier;
int iThisTradeProfit=ThisTradeProfit;
Profit=Profit+iThisTradeProfit;
}//for (int cc=0; cc<OrdersTotal(); cc++)

return(Profit);
}// end int CalculatePipsProfit()


//+------------------------------------------------------------------+
//| expert start function |
//+------------------------------------------------------------------+
int start()
{
//----
if (OrdersTotal()==0)
{
Comment("No trades to monitor");
return;
}


int PipsProfit=CalculatePipsProfit();

// string ScreenMessage;
Comment("Profit = ", PipsProfit, NL);

string Market_Price='';
Market_Price = StringConcatenate("PipsProfit = ",PipsProfit,"\n");

if (PipsProfit > 0) FontColor = FontColorUp;
if (PipsProfit < 0) FontColor = FontColorDn;
if (PipsProfit ==0) FontColor = FontColor;


ObjectCreate("Market_Price_Label", OBJ_LABEL, 0, 0, 0);
ObjectSetText("Market_Price_Label", Market_Price, FontSize, FontType, FontColor);
ObjectSet("Market_Price_Label", OBJPROP_CORNER, WhatCorner);
ObjectSet("Market_Price_Label", OBJPROP_XDISTANCE, xAxis);
ObjectSet("Market_Price_Label", OBJPROP_YDISTANCE, yAxis);



//----
return(0);
}
//+------------------------------------------------------------------+
 
Hmm Lain perguruan lain kefahaman,lain setting tapi pakai 1 IA yg sama..Kita akan lihat bagaimana input2 ini akan dapat membantu menambahbaikkan Taringding forex kita..thanks for sharing mastaa...never stop thinking and reserching untill lerbump!

aku masih lagi pakai manual IA..IA 28pairs jd long term trend and create IA 14 pairs buat cam daily trend..before OP, send IA peninjau..

apa2 pun, tq for input2 yg bernas dr tuan..skang baru syok nk swing trading...:">
 
aku masih lagi pakai manual IA..IA 28pairs jd long term trend and create IA 14 pairs buat cam daily trend..before OP, send IA peninjau..

apa2 pun, tq for input2 yg bernas dr tuan..skang baru syok nk swing trading...:">

kenapa nk swing?kn forex short selling..2 ways market.lamenye nk tggu baru taking profit..klu swing prefer trade equity/stock.. :D
masa tu duit tuu..
 

kenapa nk swing?kn forex short selling..2 ways market.lamenye nk tggu baru taking profit..klu swing prefer trade equity/stock.. :D
masa tu duit tuu..

hehe..aku peram IA 14 buy (live) sejak 19/10 bro...dah 4570 pips..double layer...berbaloi2..

p/s;aku kat office, tak dapek nak SS :)paid
 
hehe..aku peram IA 14 buy (live) sejak 19/10 bro...dah 4570 pips..double layer...berbaloi2..

p/s;aku kat office, tak dapek nak SS :)paid

klu duk opis,xdpt nk trade scalping/intraday,xdptlh den nk tolong..trade jelah swing/hold post..:D jnji gj kejer bulan2 ngn popit forex masyuk..dh jd 3 ways market tu..:)cgrock
 
Kalau 14pair tu kita potong yg ada direct ngan indirect hedging boleh ka? jadi 14pair akan dapat 10pair saja. cth Buy GU ngan Buy UJ...potong dapat Buy GJ...jadi potong 2pair jadi satu pair.
Kalu potong..dapatla save spread ngan ekuiti aku.

pandangan tuan hamba itu saya rasa amat bernas sekali...dah cuba...agak +ve... just my 2 cent sharing..
 
TIDAK BOLEH. STICK TO IT. nak dapat 3000 pips tapi berkira dgn 70 pips spread... bukan bisnes yg bagus tu. :D

RESEARCH N DEVELOPMENT in progress...time kasih tuan
 
aku masih lagi pakai manual IA..IA 28pairs jd long term trend and create IA 14 pairs buat cam daily trend..before OP, send IA peninjau..

apa2 pun, tq for input2 yg bernas dr tuan..skang baru syok nk swing trading...:">
Manual yg macammana tuh bro?Yg gunakan 2 flatform demo ke tuh?Klu boleh bro try ler IA V1 yg bro Aiman dah buat tuh..Jauh lebih baik utk kita settingkan masa utk IA on..malah setting2 masa untuk kebelakang pun bleh..sekarang dah ada beberapa versi yg semakin baik dan mantap kegunaannya..rugi tak pakai..

Zaman dah berubah..teknologi sentiasa dibangunkan dan sentiasa advance ke hadapan...dahulu kita hanya guna cd...skrg dah ada blue ray...kome pikio ler sendiri weh..
 
Manual yg macammana tuh bro?Yg gunakan 2 flatform demo ke tuh?Klu boleh bro try ler IA V1 yg bro Aiman dah buat tuh..Jauh lebih baik utk kita settingkan masa utk IA on..malah setting2 masa untuk kebelakang pun bleh..sekarang dah ada beberapa versi yg semakin baik dan mantap kegunaannya..rugi tak pakai..

Zaman dah berubah..teknologi sentiasa dibangunkan dan sentiasa advance ke hadapan...dahulu kita hanya guna cd...skrg dah ada blue ray...kome pikio ler sendiri weh..

Err..sifu naza boleh tak tolong buatkn IA pip kat muka sebelah...mantop tuhh utk calculate pip hijauuu guna fibooo...
 

Latest Posts

Live Forex Chart

Currency
Rates
EUR / USD
1.13910
USD / JPY
157.285
GBP / USD
1.32505
USD / CHF
0.82827
USD / CAD
1.41455
EUR / JPY
179.163
AUD / USD
0.70328
Back
Top
Log in Register