straightsuccessfx scam

I guess I am to late too.

Is there any way that we can trace the email address and find where they are from?

They sent me a file that I can't load on the charts and they are telling me to do some dll coding or they wl do that for extra $150.

I reported the video but not sure if that will help.

By the way anybody using some profitable EA?
 
i do not know where all this bad reviews are coming from, i can testify to using this ea, it has made me great returns more than any other ea in the forex world, this is the best ea i ever use. it make consistent profits for me since january i bought it.
 
i do not know where all this bad reviews are coming from, i can testify to using this ea, it has made me great returns more than any other ea in the forex world, this is the best ea i ever use. it make consistent profits for me since january i bought it.

Hello Wu Chun,
Did you get the EACTA.dll file from that guy. Nobody, in this thread received that file, who all bought it. Everybody was cheated. Can you send me the dll file EACTA.dll file and the settings file to me?

Reagards,
Sudheer.
 
Hello Wu Chun,
Did you get the EACTA.dll file from that guy. Nobody, in this thread received that file, who all bought it. Everybody was cheated. Can you send me the dll file EACTA.dll file and the settings file to me?

Reagards,
Sudheer.
He sent me something like a code but I don't know what is that for.
 
This is what he sent me.

Dll patch below;

package jnahelloworldDLL;

import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.NativeLong;
import com.sun.jna.Platform;
import com.sun.jna.*;

/** Simple example of native library declaration and usage. */
public class Main {
public interface simpleDLL extends Library {
simpleDLL INSTANCE = (simpleDLL) Native.loadLibrary(
(Platform.isWindows() ? "simpleDLL" : "simpleDLLLinuxPort"), simpleDLL.class);
// it's possible to check the platform on which program runs, for example purposes we assume that there's a linux port of the library (it's not attached to the downloadable project)
byte giveVoidPtrGetChar(Pointer param); // char giveVoidPtrGetChar(void* param);
int giveVoidPtrGetInt(Pointer param); //int giveVoidPtrGetInt(void* param);
int giveIntGetInt(int a); // int giveIntGetInt(int a);
void simpleCall(); // void simpleCall();
}

public static void main(String[] args) {

simpleDLL sdll = simpleDLL.INSTANCE;

sdll.simpleCall(); // call of void function

int a = 3;
int result1 = sdll.giveIntGetInt(a); // calling function with int parameter&result
System.out.println("giveIntGetInt("+a+"): " + result1);

String testStr = "ToBeOrNotToBe";
Memory mTest = new Memory(testStr.length()+1); // '+1' remember about extra byte for \0 character!
mTest.setString(0, testStr);
String testReturn = mTest.getString(0); // you can see that String got properly stored in Memory object
System.out.println("String in Memory:"+testReturn);

Memory intMem = new Memory(4); // allocating space
intMem.setInt(0, 666); // setting allocated memory to an integer
Pointer intPointer = intMem.getPointer(0);

int int1 = sdll.giveVoidPtrGetInt(Pointer.NULL); // passing null, getting default result
System.out.println("giveVoidPtrGetInt(null):" + int1);
int int2 = sdll.giveVoidPtrGetInt(intMem); // passing int stored in Memory object, getting it back
//int int2 = sdll.giveVoidPtrGetInt(intPointer); causes JVM crash, use memory object directly!
System.out.println("giveVoidPtrGetInt(666):" + int2);

byte char1 = sdll.giveVoidPtrGetChar(Pointer.NULL); // passing null, getting default result
byte char2 = sdll.giveVoidPtrGetChar(mTest); // passing string stored in Memory object, getting first letter

System.out.println("giveVoidPtrGetChar(null):" + (char)char1);
System.out.println("giveVoidPtrGetChar('ToBeOrNotToBe'):" + (char)char2);

}
 
Back
Top