Click here to Skip to main content
16,004,977 members

Comments by biswa85 (Top 5 by date)

biswa85 28-Jul-19 5:09am View    
My problem is .. with the same data .. portal (https://in.investing.com/charts/live-charts) stochrsi indicator .. value / graph is different than my data . My data points giving very quick over brought and very fast over sold region (with same time frame with same data ) . Please suggest .
biswa85 26-Jul-19 11:37am View    
I have posted the code bellow .. please help if possible . Thank you .
biswa85 17-Jul-19 13:12pm View    
Fine I try to create a sample .. Is their any nuget pack with provide financial algorithm ?
biswa85 23-Jan-19 15:11pm View    
In Form I have added multiple timer ... On certain interval it moves to text box in webbrowser ... But I am unable to key in value in c# (like we press keys ) . This will be the replica of human interaction but through c# .

My application will key in data in web browser website .. like chrome or Ie .
biswa85 5-Jan-19 14:16pm View    
Thank you. I have solve the existing problem .


But I have one more quest . After pasting the code on http://www.test.com website from browser I am not able to trigger my method . Please help me to solve the issue .

Meaning -

I have opened website in browser .
Inspect the element and paste the bellow mentioned jquery in website.
Then my method should suppose to trigger automatically as jquery time implemented .

Please guide me .


@script block start

function SVDT(KeyV1, KeyV2, ScriptName, OpenVal, CloseVal, HighVal, LowVal) {


$.ajax({
type: "GET",
contentType: 'application/json; charset=utf-8',
dataType: 'jsonp',
crossDomain: true,
url: 'http://www.xxxx.com/MyRequest.asmx/ABC',
headers: {
"Access-Control-Allow-Credentials": "true",
"Access-Control-Allow-Origin": "*",
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
data: {
KeyV1: KeyV1,
KeyV2: KeyV2,
ScriptName: ScriptName,
OpenVal: OpenVal,
CloseVal: CloseVal,
HighVal: HighVal,
LowVal: LowVal
},
success: function (result) {
//alert(JSON.stringify(result));
},
error: function (xhr, status, error) {
//alert(error);
}
});


}

var x = setInterval(function () {
$(".info").each(function () {
var scriptname = $(this).find(".symbol .nice-name").html();
var scriptprice = $(this).find(".price .last-price").html();
SVDT(keyDate, keyYear, scriptname, scriptprice, -1, -1, -1);
});
}, 10000);

@script block end