Scalping New York

celte83
Trader
Posts: 157
Joined: Sat Jan 21, 2012 7:51 pm
Location: Gonfaron - Var 83 - France

Scalping New York

Post by celte83 »

Hi,
When you have a little experience, it's obvious. Two or three little things, two or three "details" and that changes everything.
For me there is no wrong way, there is only one: to win.

Humility.
Good health and good luck
jf
User avatar
Tebis
Trader
Posts: 111
Joined: Wed Nov 16, 2011 9:50 am
Location: Switzerland

Scalping New York

Post by Tebis »

paulbt38 » Yesterday, 16:48 wrote:
Interesting you are using the 15min timeframe for Bob's moving average. I was considering using a shorter timeframe after this weeks losses. Afterall we are trying to close a basket within an hour or two at the most, so the longer term MA doesn't have as much relevance.

Don't get me wrong, Bob's MA is legendary on this forum and has proven to be a very useful tool, but perhaps using a shorter time period will help this strategy. Certainly worth testing out. Perhaps this was what Celte83 was trying to say but unfortunately for him he went about it in totally the wrong way. In my view you don't criticize the geniuses that have worked on this forum, and in fact own it, for years.

Also noted you only had one trading time of 8 (broker time), so I presume you aren't trading the NY session?

Paul
Hi Paul,
yes, I use the M15 Trend. With another manual BO Trading its very usefull too.
Here the friday report. As you can see I am trading the LO- and NYO Session.
You do not have the required permissions to view the files attached to this post.
trader689
Trader
Posts: 674
Joined: Thu Nov 17, 2011 12:53 am

Scalping New York

Post by trader689 »

thanks for sharing your setfile Tebis, just wanted to point out that the only trading time on it is broker 8

trader
Umberleigh
Posts: 3
Joined: Sun Feb 20, 2022 2:16 am

Scalping New York

Post by Umberleigh »

Scalpy 7-1-2022.png
You do not have the required permissions to view the files attached to this post.
Maximilian
Trader
Posts: 150
Joined: Sat Sep 06, 2014 2:43 pm

Scalping New York

Post by Maximilian »

Awesome, which version and what settings?
Cheers,
MAX
Umberleigh
Posts: 3
Joined: Sun Feb 20, 2022 2:16 am

Scalping New York

Post by Umberleigh »

Maximilian » Fri Jul 01, 2022 1:29 pm wrote:
Awesome, which version and what settings?
Cheers,
MAX
Hi Max,
I'm using the original version of Scalpy except for that minor coding character change that Steve mentioned in the first day or two. I'm using default settings with the exception of lot size (I'm using 1 standard lot.) So far, its seems the basket hedge effect is successfully keeping the drawdowns light and the breakeven function effective, while preserving profit opportunities.

Umberleigh
forexaz
Posts: 3
Joined: Sat Mar 19, 2016 5:27 am

Scalping New York

Post by forexaz »

pivotter » Sat Jun 04, 2022 7:42 am wrote:
SteveHopwood » Sat Jun 04, 2022 1:37 pm wrote:
pivotter » Fri Jun 03, 2022 8:46 pm wrote:but i also cheated as i added ForceLoadHistoricalData() to the top of sendBasket() to make sure all H! and H4 candles are updated before all symbols are scanned,
That is a great idea. Can you post the code please, so I can add it?

:xm: :rocket:
Sure, attached the Scalpy with ForceloadHistory.
2 lines are added to the top of sendBasket()

//All symbols in marketpanel
ForceLoadHistoricalData();
Sleep(120000);//sleep 2 min so Empty4 can update the history file

You might want to set TradingWaitMinutes=3; to compensate for the 2 waiting minutes,

The 3 required functions, adapted to load only H1 and H4 in this case are at the bottom of the file.
void ForceLoadHistoricalData()
bool ForceLoadOneSym(
int barsWithRetry(
//---------


The file was updated to fix a bug that prevented it from trading on June 7

Ben
Hi Ben,
Could you attach the new version you mentioned about in PM with news filter and other features you added to Scalpy here or in PM? Thank you :)
User avatar
pivotter
Trader
Posts: 38
Joined: Sun May 01, 2016 12:02 am
Location: The Hague, The Netherlands

Scalping New York

Post by pivotter »

forexaz » Mon Jul 11, 2022 8:17 am wrote:
pivotter » Sat Jun 04, 2022 7:42 am wrote:
SteveHopwood » Sat Jun 04, 2022 1:37 pm wrote:
pivotter » Fri Jun 03, 2022 8:46 pm wrote:but i also cheated as i added ForceLoadHistoricalData() to the top of sendBasket() to make sure all H! and H4 candles are updated before all symbols are scanned,
That is a great idea. Can you post the code please, so I can add it?

:xm: :rocket:
Sure, attached the Scalpy with ForceloadHistory.
2 lines are added to the top of sendBasket()

//All symbols in marketpanel
ForceLoadHistoricalData();
Sleep(120000);//sleep 2 min so Empty4 can update the history file

You might want to set TradingWaitMinutes=3; to compensate for the 2 waiting minutes,

The 3 required functions, adapted to load only H1 and H4 in this case are at the bottom of the file.
void ForceLoadHistoricalData()
bool ForceLoadOneSym(
int barsWithRetry(
//---------


The file was updated to fix a bug that prevented it from trading on June 7

Ben
Hi Ben,
Could you attach the new version you mentioned about in PM with news filter and other features you added to Scalpy here or in PM? Thank you :)
Well, it seems that you have no problem to move our discussion from private to public and this thread is for the Scalpy on page 1, the answer is no.
You think the rumbling comes from our "magic" black-box ?
forexaz
Posts: 3
Joined: Sat Mar 19, 2016 5:27 am

Scalping New York

Post by forexaz »

pivotter » Tue Jul 12, 2022 5:36 am wrote:
forexaz » Mon Jul 11, 2022 8:17 am wrote:
pivotter » Sat Jun 04, 2022 7:42 am wrote:
SteveHopwood » Sat Jun 04, 2022 1:37 pm wrote:
pivotter » Fri Jun 03, 2022 8:46 pm wrote:but i also cheated as i added ForceLoadHistoricalData() to the top of sendBasket() to make sure all H! and H4 candles are updated before all symbols are scanned,
That is a great idea. Can you post the code please, so I can add it?

:xm: :rocket:
Sure, attached the Scalpy with ForceloadHistory.
2 lines are added to the top of sendBasket()

//All symbols in marketpanel
ForceLoadHistoricalData();
Sleep(120000);//sleep 2 min so Empty4 can update the history file

You might want to set TradingWaitMinutes=3; to compensate for the 2 waiting minutes,

The 3 required functions, adapted to load only H1 and H4 in this case are at the bottom of the file.
void ForceLoadHistoricalData()
bool ForceLoadOneSym(
int barsWithRetry(
//---------


The file was updated to fix a bug that prevented it from trading on June 7

Ben
Hi Ben,
Could you attach the new version you mentioned about in PM with news filter and other features you added to Scalpy here or in PM? Thank you :)
Well, it seems that you have no problem to move our discussion from private to public and this thread is for the Scalpy on page 1, the answer is no.
I tried reaching you twice in private but my messages were stuck in outbox for days...couldn't think of any other way of reaching you? It appears my messages I sent several days ago finally reached you today.
SWG123
Trader
Posts: 565
Joined: Wed Nov 16, 2011 3:02 pm
Location: Cape Town

Scalping New York

Post by SWG123 »

In lines 1023 and 1063 – change "pairIndes" to "pairIndex"?
Post Reply

Return to “Automated trading systems”