RSI-Trading (Nasdaq) | Page 155 | Forex Factory

HeroPoker_HeroPoker扑克_HeroPoker德扑圈官网

Attachments: RSI-Trading (Nasdaq)

RSI-Trading (Nasdaq)

Attached File(s)
File Type: ex4 _2025_MAHAL.ex4   4.2 MB | 28 downloads
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 58 KB



Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 33 KB
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
{quote} I think only you can guess, we(I) dont have MAHAL
It is with everybody?
?
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
{quote} It is with everybody? ?
http://www.ojas-gujarat-gov-in.com/thread/...s-expert-mahal

should be there - if this is the latest version :-)

Mucky
{quote} http://www.ojas-gujarat-gov-in.com/thread/...s-expert-mahal should be there - if this is the latest version :-) Mucky
i already add it here . . this page heading post
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 21 KB
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 58 KB
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
{file}{image} {image}

Cheeky question - is there a simple way of using this without learning to fly a plane? I just downloaded it and can't even get it to attach to a chart

I think I have a lot of studying to do...

Edit: Got it working on a chart!
There is no top. There are always further heights to reach. Jascha Heifetz
Attached File(s)
File Type: ex4 _2026_SmartGrid.ex4   3.6 MB | 40 downloads

omar, and this is our old SmartGrid,,, that was shotneded to phu_rsi expert
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 20 KB
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
how to calulate realtime pipValue for 1 lot . .
Inserted Code
void pip_value_calc()
{
   double total_profit_buy = 0.0;
   double total_pips_buy   = 0.0;
   double total_profit_sell = 0.0;
   double total_pips_sell   = 0.0;
   for(int i = 0; i < OrdersTotal(); i++)
   {
      if(OrderSelect(i, SELECT_BY_POS, MODE_TRADES))
      {
         if(OrderSymbol()!= _Symbol) continue;
         if(OrderType() >1) continue;
         
            double profit = OrderProfit();
            double lots   = OrderLots();
            double open   = OrderOpenPrice();
            double current= (OrderType() == OP_BUY) ? Bid : Ask;
            
            double diff   = (current - open) / Point;
            if(OrderType() == OP_SELL) diff = -diff;
            
            if(OrderType() == OP_BUY)
            {
               total_profit_buy += profit;
               total_pips_buy   += diff * lots;
            }
            else if(OrderType() == OP_SELL)
            {
               total_profit_sell += profit;
               total_pips_sell   += diff * lots;
            }
      }
   }
   if(MathAbs(total_pips_buy) >eps)
   {
      double pip_value_buy = MathAbs(total_profit_buy) / MathAbs(total_pips_buy);
      Alert("Pip Value for 1 Lot (Buy Trades - ", Symbol(), "): ", DoubleToStr(dig*pip_value_buy, 8), " ", AccountCurrency());
   }
   if(MathAbs(total_pips_sell) >eps)
   {
      double pip_value_sell = MathAbs(total_profit_sell) / MathAbs(total_pips_sell);
      Alert("Pip Value for 1 Lot (Sell Trades - ", Symbol(), "): ", DoubleToStr(dig*pip_value_sell, 8), " ", AccountCurrency());
   }
   if(MathAbs(total_pips_buy) <=eps && MathAbs(total_pips_sell) <=eps)
   {
      Alert("No open trades on this symbol.");
   }
}
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
AUDUSD
?
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 11 KB
-
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
how to calulate realtime pipValue for 1 lot . . void pip_value_calc() { double total_profit_buy = 0.0; double total_pips_buy = 0.0; double total_profit_sell = 0.0; double total_pips_sell = 0.0; for(int i = 0; i < OrdersTotal(); i++) { if(OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) { if(OrderSymbol()!= _Symbol) continue; if(OrderType() >1) continue; double profit = OrderProfit(); double lots = OrderLots(); double open = OrderOpenPrice(); double current= (OrderType() == OP_BUY) ? Bid : Ask; double diff = (current - open) / Point; if(OrderType() ==...
Thank you very much for sharing the code, Al-Otaibi.
how to calulate realtime pipValue for 1 lot . . void pip_value_calc() { double total_profit_buy = 0.0; double total_pips_buy = 0.0; double total_profit_sell = 0.0; double total_pips_sell = 0.0; for(int i = 0; i < OrdersTotal(); i++) { if(OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) { if(OrderSymbol()!= _Symbol) continue; if(OrderType() >1) continue; double profit = OrderProfit(); double lots = OrderLots(); double open = OrderOpenPrice(); double current= (OrderType() == OP_BUY) ? Bid : Ask; double diff = (current - open) / Point; if(OrderType() ==...
Attached Image (click to enlarge)
Click to Enlarge

Name: digo.jpg
Size: 112 KB
{quote} {image}
dig is values like 1, 10, 100 , ..
digo is values like 0.00001. 0.0001. 0.001. 0.01, 0.1, 1.0,
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
if dig=10,,,,, digo=0.1
if dig=100,, digo=0.01 (LIKE NASDAC, with 2 digits afte decimal)
etc. ,
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
AUDUSD ?{image}-
look, AUDUSD, tell you to wait BUYs on GBPAUD,,, TILL you see 0.7011/15
BUT I HURRIED!
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 12 KB
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 12 KB
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
you see . .

Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 11 KB

old post!
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 35 KB
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
I don't understand why the difference between order prices is twice as large as specified in the settings? I think I'm missing something in the parameter description...
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 203 KB
Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 27 KB

1) what you expect?

please establish a demo account, and send credentials to me PM . . FF

i think it was 4.9 ,,, then later you change it to 24.2 ? please confirm? YES or NO
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538
I see no problems!

Attached Image (click to enlarge)
Click to Enlarge

Name: screenshot.png
Size: 46 KB

mostly you change it ?
?
each day 10%,,,, http://www.ojas-gujarat-gov-in.com/thread/1371538