Simple Scalp

 

Hi traders!

First I would like to apologise for my English.

I would like to show you the system which I saw on one Russian forum.

Working timeframe is M30

We need Parabolic SAR and a MACD indicators.

Enter buy only when both the MACD crosses and the PSAR dot jumps down

Enter sell only when both the MACD crosses and the PSAR dot jumps up

So when one indicator shows the entry you wait for 3 bars and if the second indicator didn't give u an entry signal during these 3 bars u don't enter

I enclose the screenshot with entry examples (one false entry)

Indicators' parameters are standart but u also can change MACD to 9 18 3 and PSAR to 0.26 0.29 - this looks even better then standart parameters (in my view)

I use these targets: 10 pips tp and minimum 25 pips SL (my SL is usually bigger)

Please don't hesitate to ask me questions and to help in developing thi unfinished system

Files:
111.gif  23 kb
 

Hi Noize, I think if you trade from TF M30, you will get more than 10 pips.

 

Scalping is not good strategy. I trade about 6 years and I did not see any scalpers which long and successfully trade. Successful trade is discipline and analysis. And anything else.

 
Lineprofit:
Scalping is not good strategy. I trade about 6 years and I did not see any scalpers which long and successfully trade. Successful trade is discipline and analysis. And anything else.

Well,

maybe u right,

follow the money management will help u when u scalping.

Always trust ur system.

And do not greed.

And u will be fine.

 
NOIZE:
Hi traders!

First I would like to apologise for my English.

I would like to show you the system which I saw on one Russian forum.

Working timeframe is M30

We need Parabolic SAR and a MACD indicators.

Enter buy only when both the MACD crosses and the PSAR dot jumps down

Enter sell only when both the MACD crosses and the PSAR dot jumps up

So when one indicator shows the entry you wait for 3 bars and if the second indicator didn't give u an entry signal during these 3 bars u don't enter

I enclose the screenshot with entry examples (one false entry)

Indicators' parameters are standart but u also can change MACD to 9 18 3 and PSAR to 0.26 0.29 - this looks even better then standart parameters (in my view)

I use these targets: 10 pips tp and minimum 25 pips SL (my SL is usually bigger)

Please don't hesitate to ask me questions and to help in developing thi unfinished system

ur chart very simple,

need more indi to get good trades.

 
cipyu:
ur chart very simple, need more indi to get good trades.

Price move indicators, not inverse, indicators doesn't move price, they're based on price.

By adding indicators we only represent price behavior on different ways, with different visuals. Famous traders does not use more than two or at least three indicators.

Price could move on three ways, up, down, and none of previous. That's means three possibilities.

3 indicators by 3 possibilities means you have to think 27 times about probabilities. Your brain is like Kasparov thinking for the next move.

By adding 6 indicators is too much for mi mind

 
Linuxser:
Price move indicators, not inverse, indicators doesn't move price, they're based on price.

By adding indicators we only represent price behavior on different ways, with different visuals. Famous traders does not use more than two or at least three indicators.

Price could move on three ways, up, down, and none of previous. That's means three possibilities.

3 indicators by 3 possibilities means you have to think 27 times about probabilities. Your brain is like Kasparov thinking for the next move.

By adding 6 indicators is too much for mi mind

hahaha..

u r absolutely right..

that why my brain need to format..

too many things to think at the same time..

why not use candlestick formation, breakout n stoch?

that strategy is simple n profitable. (if u know how to use it well)

hehehe..

see ya!

 

Simple Scalper

Hi,

Try this:

Simple Scalper

Bongo

Files:
 
Bongo:
Hi,

Try this:

Simple Scalper

Bongo

thanks.

can u explain here.

So, ppl will easy to know this ea..

Anyway,

thanks..

 

Hi,

You have 3 Moving Averages with different periods

(you can change the periods).

e.g.

if (Close[1] > MA_Green && MA_Blue > MA_Green && MA_Red > MA_Green && Close[1] < MA_Red)

them BUY, etc.

Bongo

extern double Lots = 0.1;

extern int Period_MA_Blue = 10;

extern int Period_MA_Red = 8;

extern int Period_MA_Green = 50;

extern int TP = 10;

extern int SL = 10;

//+------------------------------------------------------------------+

//| expert start function |

//+------------------------------------------------------------------+

int start()

{

double MA_Blue, MA_Red, MA_Green;

int res;

if(Bars < 100 || IsTradeAllowed() == false)

return;

if(Volume[0] > 1)

return;

MA_Blue = iMA(NULL, 0, Period_MA_Blue, 0, MODE_LWMA, PRICE_HIGH, 0);

MA_Red = iMA(NULL, 0, Period_MA_Red, 0, MODE_LWMA, PRICE_LOW, 0);

MA_Green = iMA(NULL, 0, Period_MA_Green, 0, MODE_LWMA, PRICE_CLOSE, 0);

if (Close[1] > MA_Green && MA_Blue > MA_Green && MA_Red > MA_Green && Close[1] < MA_Red)

res = OrderSend(Symbol(), OP_BUY, Lots, Ask, 3, Ask-SL*Point, Ask+TP*Point, "", MAGICMA, 0, Blue);

else if (Close[1] < MA_Green && MA_Blue < MA_Green && MA_Red MA_Blue)

res = OrderSend(Symbol(), OP_SELL, Lots, Bid, 3, Bid+SL*Point, Bid-TP*Point, "", MAGICMA, 0, Red);

return(0);

}

 
Bongo:
Hi,

You have 3 Moving Averages with different periods

(you can change the periods).

e.g.

if (Close[1] > MA_Green && MA_Blue > MA_Green && MA_Red > MA_Green && Close[1] < MA_Red)

them BUY, etc.

Bongo

extern double Lots = 0.1;

extern int Period_MA_Blue = 10;

extern int Period_MA_Red = 8;

extern int Period_MA_Green = 50;

extern int TP = 10;

extern int SL = 10;

//+------------------------------------------------------------------+

//| expert start function |

//+------------------------------------------------------------------+

int start()

{

double MA_Blue, MA_Red, MA_Green;

int res;

if(Bars < 100 || IsTradeAllowed() == false)

return;

if(Volume[0] > 1)

return;

MA_Blue = iMA(NULL, 0, Period_MA_Blue, 0, MODE_LWMA, PRICE_HIGH, 0);

MA_Red = iMA(NULL, 0, Period_MA_Red, 0, MODE_LWMA, PRICE_LOW, 0);

MA_Green = iMA(NULL, 0, Period_MA_Green, 0, MODE_LWMA, PRICE_CLOSE, 0);

if (Close[1] > MA_Green && MA_Blue > MA_Green && MA_Red > MA_Green && Close[1] < MA_Red)

res = OrderSend(Symbol(), OP_BUY, Lots, Ask, 3, Ask-SL*Point, Ask+TP*Point, "", MAGICMA, 0, Blue);

else if (Close[1] < MA_Green && MA_Blue < MA_Green && MA_Red MA_Blue)

res = OrderSend(Symbol(), OP_SELL, Lots, Bid, 3, Bid+SL*Point, Bid-TP*Point, "", MAGICMA, 0, Red);

return(0);

}

sound great to me!

thank you..

Reason: