S
Spectro
Fxcm = scam scam scam!
Fxcm = scam scam scam!
Hi Jason,
Is there any way to make Marketscope display mid prices? I can only see options for bid and offer (I foolishly was not thinking of this and it cost me an entry as the close - at the bid price - was just slightly low).
Just wondering, no problem if not.
Regards,
William The Conqueror
Yes, this kind of post by Spectro should be deleted by the moderator. Without an explanation to what has happened, its only aim is to hurt the company. I am not myself trading with FXCM. I doubt very much you will receive a reply.Spectro.. may i ask what has happened for you to form this opinion?
Yes, and pretty easy. The Marketscope supports custom indicators feature. Unfortunately, it's not possible to attach the indicator to the post, but here is an example of the indicator which shows mid price between bid and ask typical prices:Is there any way to make Marketscope display mid prices?
function Init()
indicator:name("Midprice");
indicator:description("Indicator shows the middle price between bid and ask");
indicator:requiredSource(core.Bar);
indicator:type(core.Indicator);
indicator.parameters:addColor("clr", "Indicator Line Color", "", core.rgb(255, 255, 0));
end
local bid;
local ask;
local first;
local res;
function Prepare()
bid = core.host:execute("getBidPrice");
ask = core.host:execute("getAskPrice");
first = instance.source:first();
instance:name(profile:id());
res = instance:addStream("MP", core.Line, profile:id(), "MP", instance.parameters.clr, first);
end
function Update(period, mode)
if period >= first then
res[period] = (bid.typical[period] + ask.typical[period]) / 2;
end
end
Please note that it's extremely easy to show even a mid candle from the bid and ask candle, so you will use mid price instead of bid or ask prices in the marketscope. he custom indicator can easily show any data, not only prices, but also all these dailyfx news, COT reports and so on.
I'm afraid that I'm not allowed to put a link right here, but just google fxcodebase. This is a big community for Marketscope indicators and signals. BTW, I just don't understand why FXCM hides this resource from the traders.
FXCM spreadbet are fooking crooks!
With a attitude like that, you won't succeed trading the real market either.FXCM spreadbet are fooking crooks! Completely different data to the market sometimes, stuff that, I'm closing my account and am going to trade the real market, I've had enough of bucket shop (spreadbet firms) games, it's hard enough to beat the real market somedays let alone having to fight these spreadbetting thieves.
FXCM spreadbet are fooking crooks! Completely different data to the market sometimes, stuff that, I'm closing my account and am going to trade the real market, I've had enough of bucket shop (spreadbet firms) games, it's hard enough to beat the real market somedays let alone having to fight these spreadbetting thieves.
With a attitude like that, you won't succeed trading the real market either.
If you have anything specific you would like to discuss, you're welcome to ask me any questions.
-Jason
It's easy to discuss. Simply follow the true FX market, and stop with the slippage (at quiet times) but then you wont because every Pound I take from you, I reduce your bottom line by the same amount, and don't say you hedge every trade, I know the inner workings of the bucket shop spreadbet companies.
Hi Jason, excellent thread. Very good to have an accessible representative.
I've got a quick question about Marketscope (can't find anything in the "help").
This might be a really stupid question, but how do I bring up a 2000 tick chart? Can't seem to find anything to alter the tick chart at all.
Really like it as a charting package by the way.
Thank you for your help.