• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 9:41am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 9:41am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Comprehensive Fibonacci Analysis by Victor Pershikov, MFTA 113 replies

Broker Challenge "NDD/STP" vs. True "ECN" and "Mkt Mkr" broker talk 46 replies

Dealing with "Invalid Price", "Requote", "Server Busy" in MT4 3 replies

Remove "Expert Advisor" From email 1 reply

"expert function calls are not allowed" (?) 6 replies

  • Trading Systems
  • /
  • Reply to Thread
  • Subscribe
  • 1,134
Attachments: Comprehensive Technical Analysis expert Mahal
Exit Attachments
Tags: Comprehensive Technical Analysis expert Mahal
Cancel

Comprehensive Technical Analysis expert Mahal

  • Last Post
  •  
  • 1 6364Page 656667 90
  • 1 64Page 6566 90
  •  
  • Post #1,281
  • Quote
  • Edited May 27, 2023 9:35am May 26, 2023 8:25pm | Edited May 27, 2023 9:35am
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
Attachment 4466360


-
download ..

P1P2P3P4 re-corrected for AA
Be yourself
 
1
  • Post #1,282
  • Quote
  • May 26, 2023 8:28pm May 26, 2023 8:28pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
Quoting phuclockbs
Disliked
{quote} One more thing, when market is openning, TimeCurrent is ok but when market is closed like today, TimeCurrent is different from the close time of the last candle {image} by the way, it is just an opinion of me
Ignored
solution:
first check time of the last candle
Iam a good boy, like you . .
Be yourself
 
1
  • Post #1,283
  • Quote
  • Edited 8:54pm May 26, 2023 8:37pm | Edited 8:54pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
Quoting phuclockbs
Disliked
{quote} in my opinion, the key is the close time of the last candle (the current candle or the lastest candle) but i don't know how to do in coding concept
Ignored
yes
time of frame M1 , +60 SECONDS !!
Be yourself
 
1
  • Post #1,284
  • Quote
  • May 26, 2023 8:46pm May 26, 2023 8:46pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,833 Posts
Quoting Macd-rsi
Disliked
{quote} yes time of frame M1 , +60 SECONDS !!
Ignored
great !!!!
 
1
  • Post #1,285
  • Quote
  • May 26, 2023 8:46pm May 26, 2023 8:46pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
i guess it is the best solution!!
re-download suffix phuclockbs.exe post 1281 (first post in this page)
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 23 KB

?
Be yourself
 
1
  • Post #1,286
  • Quote
  • May 26, 2023 8:53pm May 26, 2023 8:53pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
perfect
just imagine that phu is not a FF member? ?
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 25 KB


thank you very much phu .. we do great things today . .
Be yourself
 
1
  • Post #1,287
  • Quote
  • May 26, 2023 8:56pm May 26, 2023 8:56pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
Quote
Disliked
perfect
just imagine that phu is not a FF member? ?
true addition to me
and to FF site
i have 4 eyes and 2 hearts
Be yourself
 
1
  • Post #1,288
  • Quote
  • May 26, 2023 8:58pm May 26, 2023 8:58pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
Inserted Code
               double   close=iClose(pairs[i],0,CA);
               datetime timeCurrent=iTime(pairs[i],PERIOD_M1,0);
               if(DIFINITION=="NO")
               {
                  double   open=iOpen(pairs[i],0,CA+AA-1);
                  double   high=iHigh(pairs[i],0,iHighest(pairs[i],0,MODE_HIGH,AA,CA));
                  double   low=iLow(pairs[i],0,iLowest(pairs[i],0,MODE_LOW,AA,CA));
               }
               else
               {
                  if(perd=="PERIOD_MN1")
                  {
                     int barMN=iBarShift(pairs[i],PERIOD_D1,(timeCurrent-60*PERIOD_MN1));
                     open=iOpen(pairs[i],PERIOD_D1,CA+barMN+AA-1);
                     high=iHigh(pairs[i],PERIOD_D1,iHighest(pairs[i],PERIOD_D1,MODE_HIGH,AA+barMN,CA));
                     low=iLow(pairs[i],PERIOD_D1,iLowest(pairs[i],PERIOD_D1,MODE_LOW,AA+barMN,CA));
                  }
                  else if(perd=="PERIOD_W1")
                  {
                     int barW1=iBarShift(pairs[i],PERIOD_H4,(timeCurrent-60*PERIOD_W1 ));
                     open=iOpen(pairs[i],PERIOD_H4,CA+barW1+AA-1);
                     high=iHigh(pairs[i],PERIOD_H4,iHighest(pairs[i],PERIOD_H4,MODE_HIGH,AA+barW1,CA));
                     low=iLow(pairs[i],PERIOD_H4,iLowest(pairs[i],PERIOD_H4,MODE_LOW,AA+barW1,CA));
                  }
                  else if(perd=="PERIOD_D1")
                  {
                     int barD1=iBarShift(pairs[i],PERIOD_H1,(timeCurrent-60*PERIOD_D1 ));
                     open=iOpen(pairs[i],PERIOD_H1,CA+barD1+AA-1);
                     high=iHigh(pairs[i],PERIOD_H1,iHighest(pairs[i],PERIOD_H1,MODE_HIGH,AA+barD1,CA));
                     low=iLow(pairs[i],PERIOD_H1,iLowest(pairs[i],PERIOD_H1,MODE_LOW,AA+barD1,CA));
                  }
                  else if(perd=="PERIOD_H4")
                  {
                     int barH4=iBarShift(pairs[i],PERIOD_M15,(timeCurrent-60*PERIOD_H4 ));
                     open=iOpen(pairs[i],PERIOD_M15,CA+barH4+AA-1);
                     high=iHigh(pairs[i],PERIOD_M15,iHighest(pairs[i],PERIOD_M15,MODE_HIGH,AA+barH4,CA));
                     low=iLow(pairs[i],PERIOD_M15,iLowest(pairs[i],PERIOD_M15,MODE_LOW,AA+barH4,CA));
                  }
                  else if(perd=="PERIOD_H1")
                  {
                     int barH1=iBarShift(pairs[i],PERIOD_M5,(timeCurrent-60*PERIOD_H1 ));
                     open=iOpen(pairs[i],PERIOD_M5,CA+barH1+AA-1);
                     high=iHigh(pairs[i],PERIOD_M5,iHighest(pairs[i],PERIOD_M5,MODE_HIGH,AA+barH1,CA));
                     low=iLow(pairs[i],PERIOD_M5,iLowest(pairs[i],PERIOD_M5,MODE_LOW,AA+barH1,CA));
                  }
                  else if(perd=="PERIOD_M30")
                  {
                     int barM30=iBarShift(pairs[i],PERIOD_M1,(timeCurrent-60*PERIOD_M30 ));
                     open=iOpen(pairs[i],PERIOD_M1,CA+barM30+AA-1);
                     high=iHigh(pairs[i],PERIOD_M1,iHighest(pairs[i],PERIOD_M1,MODE_HIGH,AA+barM30,CA));
                     low=iLow(pairs[i],PERIOD_M1,iLowest(pairs[i],PERIOD_M1,MODE_LOW,AA+barM30,CA));
                  }
                  else if(perd=="PERIOD_M15")
                  {
                     int barM15=iBarShift(pairs[i],PERIOD_M1,(timeCurrent-60*PERIOD_M15 ));
                     open=iOpen(pairs[i],PERIOD_M1,CA+barM15+AA-1);
                     high=iHigh(pairs[i],PERIOD_M1,iHighest(pairs[i],PERIOD_M1,MODE_HIGH,AA+barM15,CA));
                     low=iLow(pairs[i],PERIOD_M1,iLowest(pairs[i],PERIOD_M1,MODE_LOW,AA+barM15,CA));
                  }
                  else if(perd=="PERIOD_M5")
                  {
                     int barM5=iBarShift(pairs[i],PERIOD_M1,(timeCurrent-60*PERIOD_M5 ));
                     open=iOpen(pairs[i],PERIOD_M1,CA+barM5+AA-1);
                     high=iHigh(pairs[i],PERIOD_M1,iHighest(pairs[i],PERIOD_M1,MODE_HIGH,AA+barM5,CA));
                     low=iLow(pairs[i],PERIOD_M1,iLowest(pairs[i],PERIOD_M1,MODE_LOW,AA+barM5,CA));
                  }
                  else 
                  {
                     open=iOpen(pairs[i],PERIOD_M1,CA+AA-1);
                     high=iHigh(pairs[i],PERIOD_M1,iHighest(pairs[i],PERIOD_M1,MODE_HIGH,AA,CA));
                     low=iLow(pairs[i],PERIOD_M1,iLowest(pairs[i],PERIOD_M1,MODE_LOW,AA,CA));
                  }
               }
Be yourself
 
1
  • Post #1,289
  • Quote
  • May 26, 2023 9:00pm May 26, 2023 9:00pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
string perd=EnumToString(ENUM_TIMEFRAMES(Period()));
Be yourself
 
1
  • Post #1,290
  • Quote
  • May 26, 2023 9:02pm May 26, 2023 9:02pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,833 Posts
Quoting Macd-rsi
Disliked
i guess it is the best solution!! re-download suffix phuclockbs.exe post 1281 (first post in this page){image} ?
Ignored
Thank you very much, Al-Otaibi.
 
1
  • Post #1,291
  • Quote
  • May 26, 2023 9:03pm May 26, 2023 9:03pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
casting any formal mt4 period to a string value . .
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 11 KB

0
Be yourself
 
1
  • Post #1,292
  • Quote
  • May 26, 2023 9:07pm May 26, 2023 9:07pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
therefore we have to check all price-action buttons .. like A1 A2 A3 A4, C1 C2 C3 C4, F1, etc . . .
if related, in anywhere
Be yourself
 
1
  • Post #1,293
  • Quote
  • May 26, 2023 9:08pm May 26, 2023 9:08pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
Quoting Macd-rsi
Disliked
{quote} another question give me the best three things in this expert according to your opinion arranged according to its power?
Ignored
my answer (just my opinion)
1) F1 button
2) MOVIES of S/R
3) EXTREME
4) RENOKNIZED ZIGZAG
5) H/L ... according to this day improvements .
6) MA-CURVE
Be yourself
 
1
  • Post #1,294
  • Quote
  • May 26, 2023 9:16pm May 26, 2023 9:16pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
I mean by EXTREME, these 8 buttons, not button EXTREME beside them
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 20 KB

-
Be yourself
 
1
  • Post #1,295
  • Quote
  • May 26, 2023 9:17pm May 26, 2023 9:17pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 28 KB

SPARAM indicates that: they are extreme buttons . .
Be yourself
 
1
  • Post #1,296
  • Quote
  • May 26, 2023 9:21pm May 26, 2023 9:21pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
EXTREME definition:
for example GBPAUD is a "division pair"
since GBPAUD=GBPUSD/AUDUSD . . . . . . .divided by
therefore . .
if GBPUSD goes up and AUDUSD goes down we expect a double push for GBPAUD (two forces leading to the same direction)
we call this case an extreme case, not idle case
or
if GBPUSD goes down and AUDUSD goes up we expect a double push for GBPAUD (two forces leading to the same direction)
we call this case an extreme case, not idle case
Be yourself
 
2
  • Post #1,297
  • Quote
  • May 26, 2023 9:54pm May 26, 2023 9:54pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,833 Posts
Quoting Macd-rsi
Disliked
{quote} true addition to me and to FF site i have 4 eyes and 2 hearts
Ignored
It's such an honor for me.
Thank you
 
1
  • Post #1,298
  • Quote
  • May 26, 2023 11:59pm May 26, 2023 11:59pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,833 Posts
Dear Al-Otaibi,
Attached Image (click to enlarge)
Click to Enlarge

Name: 5555.jpg
Size: 410 KB
 
1
  • Post #1,299
  • Quote
  • Edited 3:32am May 27, 2023 2:18am | Edited 3:32am
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,833 Posts
Quoting Macd-rsi
Disliked
{quote} another question give me the best three things in this expert according to your opinion arranged according to its power?
Ignored
My favourite ones:
1. P3
2. F2
3. RSI-AQUA
 
1
  • Post #1,300
  • Quote
  • May 27, 2023 7:34am May 27, 2023 7:34am
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 12,485 Posts | Online Now
you mean time vert line ??

under check
Be yourself
 
 
  • Trading Systems
  • /
  • Comprehensive Technical Analysis expert Mahal
  • Reply to Thread
    • 1 6364Page 656667 90
    • 1 64Page 6566 90
0 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