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

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Trying scalping with a 1000 bucks - Scalping is expensive! 39 replies

RSI sound alert 19 replies

1M & 5M Scalping System (Scalping Paradise) 21 replies

Looking for MT4 indicator: Sound alert enabled Pivot Levels 5 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 6
Attachments: Scalping With Sound!
Exit Attachments

Scalping With Sound!

  • Last Post
  •  
  • 1 2 Page 3
  • 1 2 Page 3
  •  
  • Post #41
  • Quote
  • Apr 26, 2016 1:09am Apr 26, 2016 1:09am
  •  Samuri
  • | Joined Jul 2006 | Status: 凹凸 hunter | 288 Posts
Updated to Windows 10, the beloved indicator does not work normally.
Finally searched out this modified version with improved multi-chart functionality.
Now I can enjoy scalping with sound again!
Attached File
File Type: mq4 AB_Market Pace_Sound.mq4   3 KB | 511 downloads
凹凸 only
 
 
  • Post #42
  • Quote
  • Jan 4, 2017 1:55pm Jan 4, 2017 1:55pm
  •  falaco
  • | Joined Jan 2017 | Status: Junior Member | 1 Post
guys,
does it work on MT5?
where do I put the files?
Thanks.
 
 
  • Post #43
  • Quote
  • Aug 3, 2017 10:43am Aug 3, 2017 10:43am
  •  capoeira
  • | Joined Mar 2013 | Status: Member | 90 Posts
This would give a better picture of the tickchart if the sound would play for every "package" of ticks. something like every 50 ticks (should be ajustable) a sound plays. If the price is higher than at the last sound, it plays one tone, if lower another. a small tick would count 1, a slightly bigger counts 2, and so on, a huge tick counts 10.
 
 
  • Post #44
  • Quote
  • Aug 3, 2017 2:53pm Aug 3, 2017 2:53pm
  •  capoeira
  • | Joined Mar 2013 | Status: Member | 90 Posts
created my own sounds.
My goal is to be able to get a picture of the tickchart without looking at it.
So this is my first test:
the bigger the upticks, the higher the tone. The bigger the dwonticks the lower the tone.
smallest upticks for up and down are seperated by 4 tones and even more effective: downticks are on the left channel, upticks on the right channel.
I might make other versions in the future. If anybody tries this out and likes it give me a feedback. than I might upload future versions
Attached File
File Type: zip MarketPace left righ up down.zip   270 KB | 263 downloads
 
 
  • Post #45
  • Quote
  • Edited at 10:33am Aug 4, 2017 10:19am | Edited at 10:33am
  •  capoeira
  • | Joined Mar 2013 | Status: Member | 90 Posts
I tell you what.
We shouldn't hear the change of the tick relativly to the last tick, but hear the change of the tick relativly to the opening price of the current bar (better even the closing tick of last bar). This way we could actualy hear where the candel is.
The code is there in post 41; shouldnt be that hard to modify. If have no clue how to code though.

So what would it do?
let's say the opening tic (or closing tick of last bar) of the bar is at 1.00000.
if the next tick is then at 1.00001, we hear sound file "+1"
if the next tick is then at 1.00005, we hear sound file "+2"
next tick is at 0.99997, we hear sound file "-3"
and so on.

you could than even edit the quantity of sounds by deleting the soundfiles. If for example you want to hear only 1 pip steps, you would just have to delete sound file "+1" to "+9", "+11" to "+19", and so on.

EDIT: perhaps half pip steps would make more sense; but anyways, the steps would be easily editible in the code

EDIT2: the first tick of the bar (or last of the last bar) needs diferent soundfiles (something like a bell or so) in order to notify that the next sounds we hear a relative to it
 
 
  • Post #46
  • Quote
  • Aug 7, 2017 11:46am Aug 7, 2017 11:46am
  •  capoeira
  • | Joined Mar 2013 | Status: Member | 90 Posts
So i tried to modify this code with my nonexistent prgraming codes, which obviously doesn't work.
If someone could make this happen, shouldn't be hard
(if the change is -4 to 4 the value should be added until being bigger than 4 or smaller than -4. only then a sound should play)

Inserted Code
double LastBid = GlobalVariableGet(Symbol()+"LastBidMarketPaceGV")/Point;
double CurrentBid = Bid/Point;
double Change = NormalizeDouble((CurrentBid-LastBid+sum),0);
 
if(Change!=0) {
string vol;
string sum;
if(Change == 1) sum = 1;
if(Change == 2) sum = 2;
if(Change == 3) sum = 3;
if(Change == 4) sum = 4;
if(Change == 5) vol = "+5";
if(Change == 6) vol = "+6";
if(Change == 7) vol = "+7";
if(Change == 8) vol = "+8";
if(Change == 9) vol = "+9";
if(Change >= 10) vol = "+10";
 
if(Change == -1) sum = -1;
if(Change == -2) sum = -2;
if(Change == -3) sum = -3;
if(Change == -4) sum = -4;
if(Change == -5) vol = "-5";
if(Change == -6) vol = "-6";
if(Change == -7) vol = "-7";
if(Change == -8) vol = "-8";
if(Change == -9) vol = "-9";
if(Change <= -10) vol = "-10";
 
 
GlobalVariableSet(Symbol()+"LastBidMarketPaceGV", Bid);
if(activechart()==1) {
if(Change!=> 4 < -4) {
string Sound = "Market Pace/Tick"+vol+".wav";
PlaySound(Sound);
}
}
}
}
 
 
  • Post #47
  • Quote
  • Dec 12, 2018 5:22am Dec 12, 2018 5:22am
  •  capoeira
  • | Joined Mar 2013 | Status: Member | 90 Posts
Quoting capoeira
Disliked
I tell you what. We shouldn't hear the change of the tick relativly to the last tick, but hear the change of the tick relativly to the opening price of the current bar (better even the closing tick of last bar). This way we could actualy hear where the candel is. The code is there in post 41; shouldnt be that hard to modify. If have no clue how to code though. So what would it do? let's say the opening tic (or closing tick of last bar) of the bar is at 1.00000. if the next tick is then at 1.00001, we hear sound file "+1" if the next tick is then...
Ignored
I still want to hear the chart. If any programers wants to make some money creating something like this, give me a sign
 
 
  • Post #48
  • Quote
  • Edited at 11:20am Jan 28, 2019 10:55am | Edited at 11:20am
  •  ionone
  • | Commercial Member | Joined Oct 2014 | 438 Posts
sorry
 
 
  • Post #49
  • Quote
  • Last Post: Mar 19, 2019 11:06am Mar 19, 2019 11:06am
  •  igorSOM
  • | Joined Jul 2018 | Status: Junior Member | 1 Post
Hi there,
If you got IOS device, do check out my app "Sound of Markets" . Its free for 3 random pairs.
 
 
  • Platform Tech
  • /
  • Scalping With Sound!
  • Reply to Thread
    • 1 2 Page 3
    • 1 2 Page 3
0 traders viewing now
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 / ©2022