Let's join together

there is some text on the previous webpage that says:
Looking for like-minded trader friends? Find “local” traders that share your trading interests and arrange a get together over a coffee or a Skype session. Note: This is NOT a promotional tool for commercial/business re…

what is the difference between skype and zoom?

regarding the above text that says "not for promotional purposes or for commercial/business)…

  1. i am a programmer and a trader.

  2. i have more than a minute invested into this trading work.

  3. it is most definitely my plan to become a very commercial operation.

when i say that it is my goal to become a commercial operation, that does not mean that i intend to sell worthless trading bots or worthless mentoring services(the two most common commercial scams in forex).

either way, all said and done, i dont even plan to begin my trading team from these forums… fat chance on that happening… if i load up a zoom chat with forum traders, they would assault me with questions and then they would leave the chat.

either way, good afternoon.

pr

//the blue line in the above chart is the “BE”(break even)

//when multiple trades are in play… calculate breakeven price.

double getbe()
{
double be=0;
int ctr=0;

for(int i=0;i<OrdersTotal();i++)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false) break;

if(OrderSymbol()!=Symbol()) continue;

be+=(OrderOpenPrice()*(OrderLots()*100));
ctr+=(int)((OrderLots()*100));
}//for

if(ctr>0) be=be/ctr;

if(be==0) be=(Bid+Ask)*0.5;

GlobalVariableSet(“BE”,be);
return(be);
}//getbe

my apology for dominating your thread… fyi, i have zero interest to retain the services of a mentor and i assure you that i have no interest in anybody’s trading bots(free or not free)…

1 Like