• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 1:41pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 1:41pm
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
  • 963
Attachments: Comprehensive Technical Analysis expert Mahal
Exit Attachments
Tags: Comprehensive Technical Analysis expert Mahal
Cancel

Comprehensive Technical Analysis expert Mahal

  • Last Post
  •  
  • 1 6263Page 646566 77
  • 1 63Page 6465 77
  •  
  • Post #1,261
  • Quote
  • May 26, 2023 7:02pm May 26, 2023 7:02pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,655 Posts
Quoting Macd-rsi
Disliked
phu . . how you see HL now??
Ignored
extremely powerful
 
 
  • Post #1,262
  • Quote
  • May 26, 2023 7:07pm May 26, 2023 7:07pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 46 KB

5
Be yourself
 
1
  • Post #1,263
  • Quote
  • May 26, 2023 7:09pm May 26, 2023 7:09pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
Quoting phuclockbs
Disliked
{quote} extremely powerful
Ignored
another question
give me the best three things in this expert according to your opinion arranged according to its power?
Be yourself
 
 
  • Post #1,264
  • Quote
  • May 26, 2023 7:20pm May 26, 2023 7:20pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,655 Posts
Quoting Macd-rsi
Disliked
{file} - {image} - BLUE COLOR = cross happened
Ignored
you haven't correct things that i mentioned in post#1,241 and post#1,242 yet , have you?
 
 
  • Post #1,265
  • Quote
  • May 26, 2023 7:30pm May 26, 2023 7:30pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
Quoting phuclockbs
Disliked
{quote} you haven't correct things that i mentioned in post#1,241 and post#1,242 yet , have you?
Ignored
i did
Be yourself
 
1
  • Post #1,266
  • Quote
  • May 26, 2023 7:31pm May 26, 2023 7:31pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 29 KB

i did for all (IN LAST TEST REV ABOVE)
P1
P2
P3
P4
Be yourself
 
1
  • Post #1,267
  • Quote
  • May 26, 2023 7:35pm May 26, 2023 7:35pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
AA values
CA values
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 25 KB

k
Be yourself
 
1
  • Post #1,268
  • Quote
  • May 26, 2023 7:36pm May 26, 2023 7:36pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
assume we change AA to 2
will we keep conformity??
ans: I guess YES ... even if the resulting frame is "unnamed"
Be yourself
 
1
  • Post #1,269
  • Quote
  • May 26, 2023 7:41pm May 26, 2023 7:41pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,655 Posts
Quoting Macd-rsi
Disliked
{quote} i did
Ignored
then this is weird ?
Attached Image (click to enlarge)
Click to Enlarge

Name: 3333.jpg
Size: 489 KB
 
 
  • Post #1,270
  • Quote
  • May 26, 2023 7:43pm May 26, 2023 7:43pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
Quoting Macd-rsi
Disliked
assume we change AA to 2 will we keep conformity?? ans: I guess YES ... even if the resulting frame is "unnamed"
Ignored
let us check . .
AA=3
CA=0;
[i]open=iOpen(pairs[i],PERIOD_M1,CA+30);
high=iHigh(pairs[i],PERIOD_M1,iHighest(pairs[i],PERIOD_M1,MODE_HIGH,AA+30,CA));
low=iLow(pairs[i],PERIOD_M1,iLowest(pairs,PERIOD_M1,MODE_LOW,AA+30,CA));

=
[i] open=iOpen(pairs[i],PERIOD_M1,30);
high=iHigh(pairs[i],PERIOD_M1,iHighest(pairs[i],PERIOD_M1,MODE_HIGH,33,0));
low=iLow(pairs[i],PERIOD_M1,iLowest(pairs,PERIOD_M1,MODE_LOW,33,0));
-------------
sorry, will be fine only for AA=1 . . . to be improved . .
high and low will include also candles #31, #32,
while open at C#30 !!!
so just we must add AA-1 to open ... this is the solution

[i]open=iOpen(pairs,PERIOD_M1,CA+30+A-1);

Now check again: AA=3, A=0;
[i]open=iOpen(pairs[i],PERIOD_M1,0+30+3-1); = 32
high=iHigh(pairs[i],PERIOD_M1,iHighest(pairs[i],PERIOD_M1,MODE_HIGH,33,0));
low=iLow(pairs[i],PERIOD_M1,iLowest(pairs,PERIOD_M1,MODE_LOW,33,0));
33=32 CANDLES + candle#0 = 33
Be yourself
 
1
  • Post #1,271
  • Quote
  • May 26, 2023 7:45pm May 26, 2023 7:45pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
please brother phu
check for CA=3 AA=4?
will all 4 paramterws will be in conformity (span from start candle to last candle)
take corrected open function:
open=iOpen(pairs[i],PERIOD_M1,CA+x+A-1);
Be yourself
 
1
  • Post #1,272
  • Quote
  • May 26, 2023 7:47pm May 26, 2023 7:47pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
close=iClose(pairs[i],0,CA);
open=iOpen(pairs[i],PERIOD_M1,CA+x+A-1);
high=iHigh(pairs[i],PERIOD_M1,iHighest(pairs[i],PERIOD_M1,MODE_HIGH,AA+x,CA));
low=iLow(pairs[i],PERIOD_M1,iLowest(pairs,PERIOD_M1,MODE_LOW,AA+x,CA));
Be yourself
 
1
  • Post #1,273
  • Quote
  • May 26, 2023 7:51pm May 26, 2023 7:51pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
generic check . .

close at : CA
OPEN at: CA+x+A-1

therefore, number of spanned candles is: (OPEN)-(CLOSE)+1 = (CA+x+A-1)-(CA)+1=x+A
then high and low total candles is x+A
no need to check . . .
Be yourself
 
1
  • Post #1,274
  • Quote
  • May 26, 2023 7:53pm May 26, 2023 7:53pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
for others conception
how many numbers in range 3 TO 9
if you say 9-3=6 ... then your answer is 6 ... it is wrong
answer is 7
add 1 for starting elemnt
you have 7 numbers: 3,4,5,6,7,8,9
Be yourself
 
1
  • Post #1,275
  • Quote
  • May 26, 2023 7:59pm May 26, 2023 7:59pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
Quoting phuclockbs
Disliked
{quote} then this is weird ? {image}
Ignored
we must have 17 candles? which is 16.x candles?
iam checking
Be yourself
 
1
  • Post #1,276
  • Quote
  • May 26, 2023 8:05pm May 26, 2023 8:05pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
Quoting phuclockbs
Disliked
{quote} then this is weird ? {image}
Ignored
THANK you very much brother
to realize that, you are most important than me . .
very stupid!!!
it must be a weird . .
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 21 KB

-
Be yourself
 
1
  • Post #1,277
  • Quote
  • May 26, 2023 8:15pm May 26, 2023 8:15pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,655 Posts
Quoting Macd-rsi
Disliked
{quote} THANK you very much brother to realize that, you are most important than me . . very stupid!!! it must be a weird . . {image} -
Ignored

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
Attached Image (click to enlarge)
Click to Enlarge

Name: 4444.jpg
Size: 191 KB

by the way, it is just an opinion of me
 
 
  • Post #1,278
  • Quote
  • May 26, 2023 8:19pm May 26, 2023 8:19pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
to make it more smart ... to avoid missing candles if any, and then avoid rare possible erroneous results ..
Attached Image (click to enlarge)
Click to Enlarge

Name: _0000000.png
Size: 25 KB

g
Be yourself
 
1
  • Post #1,279
  • Quote
  • May 26, 2023 8:21pm May 26, 2023 8:21pm
  •  Macd-rsi
  • Joined Oct 2019 | Status: Forexian Fighter = FF | 11,765 Posts
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
exemption of exness .. due to bitcoin open . . .
so what is the solution . . . ??
think with me . .
Be yourself
 
1
  • Post #1,280
  • Quote
  • May 26, 2023 8:25pm May 26, 2023 8:25pm
  •  phuclockbs
  • Joined Aug 2017 | Status: learner | 1,655 Posts
Quoting Macd-rsi
Disliked
{quote} exemption of exness .. due to bitcoin open . . . so what is the solution . . . ?? think with me . .
Ignored
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
 
1
  • Trading Systems
  • /
  • Comprehensive Technical Analysis expert Mahal
  • Reply to Thread
    • 1 6263Page 646566 77
    • 1 63Page 6465 77
10 traders viewing now, 1 is a member:
lazamoro
  • 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