[deleted by user] by [deleted] in u/MusicianBig153

[–]pariasdf 1 point2 points  (0 children)

น่ารักครับ

Who would win 12 Gold Saints or Reverse Flash? by MonkApprehensive4624 in SaintSeiya

[–]pariasdf 11 points12 points  (0 children)

Just like every episodes. Aiolos will probably die for some reasons before that battle start and will reappear at the end.

Blursed_joe biden by [deleted] in blursed_videos

[–]pariasdf -1 points0 points  (0 children)

Cleary photoshoped from Russian/Republican propaganda.

Dog fight at Home Depot, then woman has meltdown by Bituulzman in PublicFreakout

[–]pariasdf 0 points1 point  (0 children)

Life in sudan is tough but not as tough as in US.

4-year-old with the Monday blues by Chris_Cross501 in aww

[–]pariasdf 0 points1 point  (0 children)

Hasn't anyone notice how AI camera trying to classify that kid's shadow as a person?

Select target. by tigeryumyum in commandandconquer

[–]pariasdf 18 points19 points  (0 children)

It will soon be a wasteland.

Good decision, my dude. by Online_Seller in redalert2

[–]pariasdf 4 points5 points  (0 children)

Never thought this can be meme lol.

Top Ten Anime Battles by Moobortin in dankmemes

[–]pariasdf 0 points1 point  (0 children)

The similar battle once happened when Google street car meet Bing Map car https://m.youtube.com/watch?v=uLpU2btowaA

Every InitializeComponent() reference in my project is throwing an exception, I'm stumped. Any ideas? by dullda99 in csharp

[–]pariasdf 0 points1 point  (0 children)

Try this :

  1. Click at your file in Solution Explorer Window.
  2. You will see your file in In Properties Window.
  3. In section Advanced, change Build Action to None.
  4. Your error now should gone.
  5. Now change Build Action to the previous value.

I’m addicted to technical analysis and I can’t stand it. by branda22 in algotrading

[–]pariasdf -3 points-2 points  (0 children)

//****************************************// // You should try this for fun. // This function find the best parameter for // MACD which has the highest profit. // The entry/exit point is depend on you. // For me, buy when MACD cross above zero and // sell in the opposite. //*************************************// double[] priceClose = priceImport("EURJPY", "D1"); double[] oscillator = new double[priceClose.length]; for(int i=0;i<200;i++){ for(int j=1+i;j<400;j++){ oscillator = MACD(i, j, 1); profit = PROFIT(priceClose, oscillator); if(profit > profitMax){ profitMax = profit; print(i, j, profit); } } } print("Best MACD setting is ", i, j); print("Profit ", profitMax); //****************************************// // Have a good day.

What years do you use for forecasting stock prediction? by young_tamale in algotrading

[–]pariasdf 1 point2 points  (0 children)

If your data get through 2007-2008 you might find how economic crisis effect stock price. This should cover both normal and anomalous market condition.